aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/tab-complete.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-10-30 10:03:00 +0900
committerMichael Paquier <michael@paquier.xyz>2019-10-30 10:03:00 +0900
commit6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c (patch)
treee06d7478c2cc96f89e0f6f00452bea8e0177b93e /src/bin/psql/tab-complete.c
parent517bf2d9107f0d45c5fea2e3904e8d3b10ce6bb2 (diff)
downloadpostgresql-6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c.tar.gz
postgresql-6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c.zip
Fix typos in the code
Author: Vignesh C Reviewed-by: Dilip Kumar, Michael Paquier Discussion: https://postgr.es/m/CALDaNm0ni+GAOe4+fbXiOxNrVudajMYmhJFtXGX-zBPoN8ixhw@mail.gmail.com
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r--src/bin/psql/tab-complete.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index e00dbab5aa1..2b1e3cda4a4 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -1490,7 +1490,7 @@ psql_completion(const char *text, int start, int end)
else if (TailMatches("CREATE"))
matches = completion_matches(text, create_command_generator);
- /* complete with somthing you can create or replace */
+ /* complete with something you can create or replace */
else if (TailMatches("CREATE", "OR", "REPLACE"))
COMPLETE_WITH("FUNCTION", "PROCEDURE", "LANGUAGE", "RULE", "VIEW",
"AGGREGATE", "TRANSFORM");