diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-04-23 22:43:09 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-04-23 22:43:09 -0400 |
commit | 5d4b60f2f25bedee257aaf6f2f4ac77028629b87 (patch) | |
tree | f0f7fa40b63a23b10e9d03ea47f97020565a66f6 /src/bin/psql/command.c | |
parent | 7ab9b2f3b79177e501a1ef90ed004cc68788abaf (diff) | |
download | postgresql-5d4b60f2f25bedee257aaf6f2f4ac77028629b87.tar.gz postgresql-5d4b60f2f25bedee257aaf6f2f4ac77028629b87.zip |
Lots of doc corrections.
Josh Kupershmidt
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |