diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2019-01-23 13:39:00 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2019-01-23 13:46:44 +0200 |
commit | 6bf9f4e6e38b0b8d6f4ba26da473d6d5bb7fa49d (patch) | |
tree | f2cee2b67fb429bb98e5a33854d3e68d3d5457f8 /src | |
parent | eb3e90cad1e48ce5ad55335514d639744a295b78 (diff) |
Fix misc typos in comments.
Spotted mostly by Fabien Coelho.
Discussion: https://www.postgresql.org/message-id/alpine.DEB.2.21.1901230947050.16643@lancre
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port.h | 2 | ||||
-rw-r--r-- | src/pl/plpython/plpy_elog.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/port.h b/src/include/port.h index a61e59c8f84..d0aebe19583 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -471,7 +471,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); #endif /* PG_PORT_H */ diff --git a/src/pl/plpython/plpy_elog.c b/src/pl/plpython/plpy_elog.c index c4806274bc9..8169c2d3a92 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) { |