@@ -166,7 +166,7 @@ function adjustFormSubmitTrigger() {
166
166
}
167
167
168
168
/**
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
170
170
* enabled.
171
171
*
172
172
* @param {Object } e The event parameter created by a form
@@ -185,12 +185,12 @@ function respondToFormSubmit(e) {
185
185
ScriptApp . AuthorizationStatus . REQUIRED ) {
186
186
// Re-authorization is required. In this case, the user needs to be alerted
187
187
// 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
189
189
// most one 'Authorization Required' email a day, to avoid spamming users
190
190
// of the add-on.
191
191
sendReauthorizationRequest ( ) ;
192
192
} 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
194
194
// the trigger event.
195
195
196
196
// Check if the form creator needs to be notified; if so, construct and
@@ -279,7 +279,7 @@ function sendCreatorNotification() {
279
279
}
280
280
281
281
/**
282
- * Sends out respondent notificiation emails.
282
+ * Sends out respondent notification emails.
283
283
*
284
284
* @param {FormResponse } response FormResponse object of the event
285
285
* that triggered this notification
0 commit comments