aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/port.h2
-rw-r--r--src/pl/plpython/plpy_elog.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/port.h b/src/include/port.h
index 0feddcdcaea..80a3556889d 100644
--- a/src/include/port.h
+++ b/src/include/port.h
@@ -481,7 +481,7 @@ extern pqsigfunc pqsignal_no_restart(int signo, pqsigfunc func);
/* port/quotes.c */
extern char *escape_single_quotes_ascii(const char *src);
-/* port/wait_error.c */
+/* common/wait_error.c */
extern char *wait_result_to_str(int exit_status);
extern bool wait_result_is_signal(int exit_status, int signum);
extern bool wait_result_is_any_signal(int exit_status, bool include_command_not_found);
diff --git a/src/pl/plpython/plpy_elog.c b/src/pl/plpython/plpy_elog.c
index bb864899f61..c8eff498414 100644
--- a/src/pl/plpython/plpy_elog.c
+++ b/src/pl/plpython/plpy_elog.c
@@ -242,7 +242,7 @@ PLy_traceback(PyObject *e, PyObject *v, PyObject *tb,
*tb_depth = 0;
initStringInfo(&tbstr);
- /* Mimick Python traceback reporting as close as possible. */
+ /* Mimic Python traceback reporting as close as possible. */
appendStringInfoString(&tbstr, "Traceback (most recent call last):");
while (tb != NULL && tb != Py_None)
{