Spelling adjustments
authorPeter Eisentraut
Tue, 9 Jun 2020 08:41:41 +0000 (10:41 +0200)
committerPeter Eisentraut
Tue, 9 Jun 2020 08:41:41 +0000 (10:41 +0200)
similar to 0fd2a79a637f9f96b9830524823df0454e962f96

contrib/pg_trgm/trgm_regexp.c
src/backend/commands/explain.c
src/backend/optimizer/plan/planner.c
src/pl/plpgsql/src/expected/plpgsql_control.out
src/pl/plpgsql/src/pl_exec.c
src/pl/plpgsql/src/pl_gram.y
src/pl/plpgsql/src/plpgsql.h

index 1330b615b84473554aa455137a02a299da8252c6..21e8a9f343514898c5bab68d0926ad5669a37e95 100644 (file)
@@ -73,7 +73,7 @@
  * (two prefix colors plus a state number from the original NFA) an
  * "enter key".
  *
- * Each arc of the expanded graph is labelled with a trigram that must be
+ * Each arc of the expanded graph is labeled with a trigram that must be
  * present in the string to match.  We can construct this from an out-arc of
  * the underlying NFA state by combining the expanded state's prefix with the
  * color label of the underlying out-arc, if neither prefix position is
  * false positives that we would have to traverse a large fraction of the
  * index, the graph is simplified further in a lossy fashion by removing
  * color trigrams. When a color trigram is removed, the states connected by
- * any arcs labelled with that trigram are merged.
+ * any arcs labeled with that trigram are merged.
  *
  * Trigrams do not all have equivalent value for searching: some of them are
  * more frequent and some of them are less frequent. Ideally, we would like
index efd7201d611769e627f63d0d0cacd0210becc0a8..9092b4b3094432a4acc66e613a01ebe0a3b8511e 100644 (file)
@@ -4238,7 +4238,7 @@ ExplainOpenGroup(const char *objtype, const char *labelname,
            /*
             * In YAML format, the grouping stack is an integer list.  0 means
             * we've emitted nothing at this grouping level AND this grouping
-            * level is unlabelled and must be marked with "- ".  See
+            * level is unlabeled and must be marked with "- ".  See
             * ExplainYAMLLineStarting().
             */
            ExplainYAMLLineStarting(es);
@@ -4601,7 +4601,7 @@ ExplainJSONLineEnding(ExplainState *es)
  *
  * YAML lines are ordinarily indented by two spaces per indentation level.
  * The text emitted for each property begins just prior to the preceding
- * line-break, except for the first property in an unlabelled group, for which
+ * line-break, except for the first property in an unlabeled group, for which
  * it begins immediately after the "- " that introduces the group.  The first
  * property of the group appears on the same line as the opening "- ".
  */
index 357850624cc21b1ad20161b3d0c55b7cc83fc30b..5ac7fed6a4db78ad3d1c5e1a36850aa21c2658bb 100644 (file)
@@ -367,7 +367,7 @@ standard_planner(Query *parse, const char *query_string, int cursorOptions,
     * parallel-restricted, and in either case it should be OK to impose
     * parallel-mode restrictions.  If that ends up breaking something, then
     * either some function the user included in the query is incorrectly
-    * labelled as parallel-safe or parallel-restricted when in reality it's
+    * labeled as parallel-safe or parallel-restricted when in reality it's
     * parallel-unsafe, or else the query planner itself has a bug.
     */
    glob->parallelModeNeeded = glob->parallelModeOK &&
index 73b23a35e56976a472eca0cd41ed98f2b6370b65..fbfc939eae926d9a4d717ee1caf350deb2f74ce1 100644 (file)
@@ -349,7 +349,7 @@ begin
   end loop flbl1;
 end;
 $$ language plpgsql;
-ERROR:  end label "flbl1" specified for unlabelled block
+ERROR:  end label "flbl1" specified for unlabeled block
 LINE 5:   end loop flbl1;
                    ^
 -- should fail: end label does not match start label
@@ -374,7 +374,7 @@ begin
   end loop outer_label;
 end;
 $$ language plpgsql;
-ERROR:  end label "outer_label" specified for unlabelled block
+ERROR:  end label "outer_label" specified for unlabeled block
 LINE 6:   end loop outer_label;
                    ^
 -- unlabeled exit matches no blocks
index 9a87cd70f1edcca7b7e65a2de18e1d5ed9efc127..9a0fa14ec88063ba5ef7b89a6116c9a99b46d744 100644 (file)
@@ -212,21 +212,21 @@ static HTAB *shared_cast_hash = NULL;
    { \
        if (estate->exitlabel == NULL) \
        { \
-           /* unlabelled EXIT terminates this loop */ \
+           /* unlabeled EXIT terminates this loop */ \
            rc = PLPGSQL_RC_OK; \
            exit_action; \
        } \
        else if ((looplabel) != NULL && \
                 strcmp(looplabel, estate->exitlabel) == 0) \
        { \
-           /* labelled EXIT matching this loop, so terminate loop */ \
+           /* labeled EXIT matching this loop, so terminate loop */ \
            estate->exitlabel = NULL; \
            rc = PLPGSQL_RC_OK; \
            exit_action; \
        } \
        else \
        { \
-           /* non-matching labelled EXIT, propagate RC_EXIT out */ \
+           /* non-matching labeled EXIT, propagate RC_EXIT out */ \
            exit_action; \
        } \
    } \
@@ -234,19 +234,19 @@ static HTAB *shared_cast_hash = NULL;
    { \
        if (estate->exitlabel == NULL) \
        { \
-           /* unlabelled CONTINUE matches this loop, so continue in loop */ \
+           /* unlabeled CONTINUE matches this loop, so continue in loop */ \
            rc = PLPGSQL_RC_OK; \
        } \
        else if ((looplabel) != NULL && \
                 strcmp(looplabel, estate->exitlabel) == 0) \
        { \
-           /* labelled CONTINUE matching this loop, so continue in loop */ \
+           /* labeled CONTINUE matching this loop, so continue in loop */ \
            estate->exitlabel = NULL; \
            rc = PLPGSQL_RC_OK; \
        } \
        else \
        { \
-           /* non-matching labelled CONTINUE, propagate RC_CONTINUE out */ \
+           /* non-matching labeled CONTINUE, propagate RC_CONTINUE out */ \
            exit_action; \
        } \
    } \
index 6778d0e7714626d182cae79938558d94f0a6128b..5a7e1a44442b77bdba385f6e501c74be7330323c 100644 (file)
@@ -1725,7 +1725,7 @@ stmt_exit     : exit_type opt_label opt_exitcond
                        {
                            /*
                             * No label, so make sure there is some loop (an
-                            * unlabelled EXIT does not match a block, so this
+                            * unlabeled EXIT does not match a block, so this
                             * is the same test for both EXIT and CONTINUE)
                             */
                            if (plpgsql_ns_find_nearest_loop(plpgsql_ns_top()) == NULL)
@@ -3749,7 +3749,7 @@ check_labels(const char *start_label, const char *end_label, int end_location)
        if (!start_label)
            ereport(ERROR,
                    (errcode(ERRCODE_SYNTAX_ERROR),
-                    errmsg("end label \"%s\" specified for unlabelled block",
+                    errmsg("end label \"%s\" specified for unlabeled block",
                            end_label),
                     parser_errposition(end_location)));
 
index 1af2595e3419e02a1b2a91a7e99c2b96f24390d2..0c3d30fb1301c78f7a3e7ec85a48bffc5034afff 100644 (file)
@@ -833,7 +833,7 @@ typedef struct PLpgSQL_stmt_exit
    int         lineno;
    unsigned int stmtid;
    bool        is_exit;        /* Is this an exit or a continue? */
-   char       *label;          /* NULL if it's an unlabelled EXIT/CONTINUE */
+   char       *label;          /* NULL if it's an unlabeled EXIT/CONTINUE */
    PLpgSQL_expr *cond;
 } PLpgSQL_stmt_exit;