Skip to content

Commit da003a5

Browse files
committed
Make strings identical
1 parent 0b4660b commit da003a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/rangetypes.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,7 @@ range_parse_flags(const char *flags_str)
19021902
ereport(ERROR,
19031903
(errcode(ERRCODE_SYNTAX_ERROR),
19041904
errmsg("invalid range bound flags"),
1905-
errhint("Valid values are '[]', '[)', '(]', and '()'.")));
1905+
errhint("Valid values are \"[]\", \"[)\", \"(]\", and \"()\".")));
19061906
}
19071907

19081908
switch (flags_str[1])
@@ -1916,7 +1916,7 @@ range_parse_flags(const char *flags_str)
19161916
ereport(ERROR,
19171917
(errcode(ERRCODE_SYNTAX_ERROR),
19181918
errmsg("invalid range bound flags"),
1919-
errhint("Valid values are '[]', '[)', '(]', and '()'.")));
1919+
errhint("Valid values are \"[]\", \"[)\", \"(]\", and \"()\".")));
19201920
}
19211921

19221922
return flags;

0 commit comments

Comments
 (0)