summaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpy_elog.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2019-01-23 13:39:00 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2019-01-23 13:47:05 +0200
commite46a475718680db3afa7fd343a2a75ae3e5d0d8e (patch)
tree3a5cf051c24680c81ed6fee6820c95f4f43e25ff /src/pl/plpython/plpy_elog.c
parentc9ff6cbfc472bb2a0db79c141d6da0a51825b066 (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/pl/plpython/plpy_elog.c')
-rw-r--r--src/pl/plpython/plpy_elog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_elog.c b/src/pl/plpython/plpy_elog.c
index 3709ad38068..7b017da2f86 100644
--- a/src/pl/plpython/plpy_elog.c
+++ b/src/pl/plpython/plpy_elog.c
@@ -213,7 +213,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)
{