summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/varlena.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-11-02 15:14:41 +0900
committerMichael Paquier <michael@paquier.xyz>2020-11-02 15:14:41 +0900
commit8a15e735be00f156a7227741c0ce88702e6de099 (patch)
treecbf4c769323851d32da23f4d58895be79dcf2787 /src/backend/utils/adt/varlena.c
parent644f0d7cc9c2cb270746f2024c706554e0fbec82 (diff)
Fix some grammar and typos in comments and docs
The documentation fixes are backpatched down to where they apply. Author: Justin Pryzby Discussion: https://postgr.es/m/20201031020801.GD3080@telsasoft.com Backpatch-through: 9.6
Diffstat (limited to 'src/backend/utils/adt/varlena.c')
-rw-r--r--src/backend/utils/adt/varlena.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/varlena.c b/src/backend/utils/adt/varlena.c
index d7bc3305417..5512e02940c 100644
--- a/src/backend/utils/adt/varlena.c
+++ b/src/backend/utils/adt/varlena.c
@@ -6180,7 +6180,7 @@ unicode_normalize_func(PG_FUNCTION_ARGS)
/*
* Check whether the string is in the specified Unicode normalization form.
*
- * This is done by convering the string to the specified normal form and then
+ * This is done by converting the string to the specified normal form and then
* comparing that to the original string. To speed that up, we also apply the
* "quick check" algorithm specified in UAX #15, which can give a yes or no
* answer for many strings by just scanning the string once.