@@ -212,41 +212,41 @@ static HTAB *shared_cast_hash = NULL;
212
212
{ \
213
213
if (estate->exitlabel == NULL) \
214
214
{ \
215
- /* unlabelled EXIT terminates this loop */ \
215
+ /* unlabeled EXIT terminates this loop */ \
216
216
rc = PLPGSQL_RC_OK; \
217
217
exit_action; \
218
218
} \
219
219
else if ((looplabel) != NULL && \
220
220
strcmp(looplabel, estate->exitlabel) == 0) \
221
221
{ \
222
- /* labelled EXIT matching this loop, so terminate loop */ \
222
+ /* labeled EXIT matching this loop, so terminate loop */ \
223
223
estate -> exitlabel = NULL ; \
224
224
rc = PLPGSQL_RC_OK ; \
225
225
exit_action ; \
226
226
} \
227
227
else \
228
228
{ \
229
- /* non-matching labelled EXIT, propagate RC_EXIT out */ \
229
+ /* non-matching labeled EXIT, propagate RC_EXIT out */ \
230
230
exit_action ; \
231
231
} \
232
232
} \
233
233
else if (rc == PLPGSQL_RC_CONTINUE ) \
234
234
{ \
235
235
if (estate -> exitlabel == NULL ) \
236
236
{ \
237
- /* unlabelled CONTINUE matches this loop, so continue in loop */ \
237
+ /* unlabeled CONTINUE matches this loop, so continue in loop */ \
238
238
rc = PLPGSQL_RC_OK ; \
239
239
} \
240
240
else if ((looplabel ) != NULL && \
241
241
strcmp (looplabel , estate -> exitlabel ) == 0 ) \
242
242
{ \
243
- /* labelled CONTINUE matching this loop, so continue in loop */ \
243
+ /* labeled CONTINUE matching this loop, so continue in loop */ \
244
244
estate -> exitlabel = NULL ; \
245
245
rc = PLPGSQL_RC_OK ; \
246
246
} \
247
247
else \
248
248
{ \
249
- /* non-matching labelled CONTINUE, propagate RC_CONTINUE out */ \
249
+ /* non-matching labeled CONTINUE, propagate RC_CONTINUE out */ \
250
250
exit_action ; \
251
251
} \
252
252
} \
0 commit comments