From 5d4b60f2f25bedee257aaf6f2f4ac77028629b87 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 23 Apr 2012 22:43:09 -0400 Subject: Lots of doc corrections. Josh Kupershmidt --- src/bin/psql/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/psql/command.c') diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index aa000735dc5..dd59aa116c2 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2471,10 +2471,10 @@ do_shell(const char *command) sys = pg_malloc(strlen(shellName) + 16); #ifndef WIN32 sprintf(sys, - /* See EDITOR handling comment for an explaination */ + /* See EDITOR handling comment for an explanation */ "exec %s", shellName); #else - /* See EDITOR handling comment for an explaination */ + /* See EDITOR handling comment for an explanation */ sprintf(sys, SYSTEMQUOTE "\"%s\"" SYSTEMQUOTE, shellName); #endif result = system(sys); -- cgit v1.2.3