@@ -212,41 +212,41 @@ static HTAB *shared_cast_hash = NULL;
212212 { \
213213 if (estate->exitlabel == NULL) \
214214 { \
215- /* unlabelled EXIT terminates this loop */ \
215+ /* unlabeled EXIT terminates this loop */ \
216216 rc = PLPGSQL_RC_OK; \
217217 exit_action; \
218218 } \
219219 else if ((looplabel) != NULL && \
220220 strcmp(looplabel, estate->exitlabel) == 0) \
221221 { \
222- /* labelled EXIT matching this loop, so terminate loop */ \
222+ /* labeled EXIT matching this loop, so terminate loop */ \
223223 estate -> exitlabel = NULL ; \
224224 rc = PLPGSQL_RC_OK ; \
225225 exit_action ; \
226226 } \
227227 else \
228228 { \
229- /* non-matching labelled EXIT, propagate RC_EXIT out */ \
229+ /* non-matching labeled EXIT, propagate RC_EXIT out */ \
230230 exit_action ; \
231231 } \
232232 } \
233233 else if (rc == PLPGSQL_RC_CONTINUE ) \
234234 { \
235235 if (estate -> exitlabel == NULL ) \
236236 { \
237- /* unlabelled CONTINUE matches this loop, so continue in loop */ \
237+ /* unlabeled CONTINUE matches this loop, so continue in loop */ \
238238 rc = PLPGSQL_RC_OK ; \
239239 } \
240240 else if ((looplabel ) != NULL && \
241241 strcmp (looplabel , estate -> exitlabel ) == 0 ) \
242242 { \
243- /* labelled CONTINUE matching this loop, so continue in loop */ \
243+ /* labeled CONTINUE matching this loop, so continue in loop */ \
244244 estate -> exitlabel = NULL ; \
245245 rc = PLPGSQL_RC_OK ; \
246246 } \
247247 else \
248248 { \
249- /* non-matching labelled CONTINUE, propagate RC_CONTINUE out */ \
249+ /* non-matching labeled CONTINUE, propagate RC_CONTINUE out */ \
250250 exit_action ; \
251251 } \
252252 } \
0 commit comments