Skip to content

Commit 80f530e

Browse files
authored
Merge pull request #8 from hecerinc/patch-1
Fix typos in comments
2 parents 5972d06 + b44849e commit 80f530e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Code.gs

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ function adjustFormSubmitTrigger() {
166166
}
167167

168168
/**
169-
* Responds to a form submission event if a onFormSubmit trigger has been
169+
* Responds to a form submission event if an onFormSubmit trigger has been
170170
* enabled.
171171
*
172172
* @param {Object} e The event parameter created by a form
@@ -185,12 +185,12 @@ function respondToFormSubmit(e) {
185185
ScriptApp.AuthorizationStatus.REQUIRED) {
186186
// Re-authorization is required. In this case, the user needs to be alerted
187187
// that they need to reauthorize; the normal trigger action is not
188-
// conducted, since it authorization needs to be provided first. Send at
188+
// conducted, since authorization needs to be provided first. Send at
189189
// most one 'Authorization Required' email a day, to avoid spamming users
190190
// of the add-on.
191191
sendReauthorizationRequest();
192192
} else {
193-
// All required authorizations has been granted, so continue to respond to
193+
// All required authorizations have been granted, so continue to respond to
194194
// the trigger event.
195195

196196
// Check if the form creator needs to be notified; if so, construct and
@@ -279,7 +279,7 @@ function sendCreatorNotification() {
279279
}
280280

281281
/**
282-
* Sends out respondent notificiation emails.
282+
* Sends out respondent notification emails.
283283
*
284284
* @param {FormResponse} response FormResponse object of the event
285285
* that triggered this notification

0 commit comments

Comments
 (0)