Skip to content

Commit 70ee76a

Browse files
committed
docs(readme): fix typo
1 parent ecc0c26 commit 70ee76a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Receive an email notification for each birthday in your 'Birthdays' calendar.
88

99
## [Export To Office](export-to-office/)
1010

11-
Export all Google Docs, Google Spreasheets and Google Slides to Microsoft Word, Microsoft Excel and Microsoft Powerpoint format (respectively).
11+
Export all Google Docs, Google Spreadsheets and Google Slides to Microsoft Word, Microsoft Excel and Microsoft Powerpoint format (respectively).
1212

1313
## Contributing
1414

export-to-office/Code.gs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function exportToOffice() {
5555
oldFile.setTrashed(true);
5656
/*
5757
To support a large number of files, this script is to be run once an hour and on each run it
58-
it will export approximatly 1/24th of the files.
58+
it will export approximately 1/24th of the files.
5959
*/
6060
} else if (oldFile.getName().charCodeAt(0) % 24 === modulo) {
6161
console.log('Deleting file "' + oldFile.getName() + '"');
@@ -71,7 +71,7 @@ function exportToOffice() {
7171
const file = files.next();
7272
/*
7373
To support a large number of files, this script is to be run once an hour and on each run it
74-
it will export approximatly 1/24th of the files.
74+
it will export approximately 1/24th of the files.
7575
*/
7676
if (file.getName().charCodeAt(0) % 24 === modulo) {
7777
if (file.isTrashed()) {

export-to-office/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Export To Office
22

3-
Export all Google Docs, Google Spreasheets, Google Slides and Google My Maps to Microsoft Word, Microsoft Excel, Microsoft Powerpoint and Keyhole Markup Language (KMZ) format (respectively).
3+
Export all Google Docs, Google Spreadsheets, Google Slides and Google My Maps to Microsoft Word, Microsoft Excel, Microsoft Powerpoint and Keyhole Markup Language (KMZ) format (respectively).
44

5-
Since Apps Scripts have a 6-minute runtime limite, I run this script hourly using a [standalone script](https://developers.google.com/apps-script/guides/standalone) with [time-driven trigger](https://developers.google.com/apps-script/guides/triggers/installable#time-driven_triggers). Each run exports 1/24th of the files in Google Drive so at the end of each day, all files should have been exported.
5+
Since Apps Scripts have a 6-minute runtime limit, I run this script hourly using a [standalone script](https://developers.google.com/apps-script/guides/standalone) with [time-driven trigger](https://developers.google.com/apps-script/guides/triggers/installable#time-driven_triggers). Each run exports 1/24th of the files in Google Drive so at the end of each day, all files should have been exported.
66

77
The script has two optional [script properties](https://developers.google.com/apps-script/guides/properties#manage_script_properties_manually):
88

0 commit comments

Comments
 (0)