From: Andrey <45011689+heckad@users.noreply.github.com> Date: Mon, 29 Apr 2019 04:33:26 +0000 (+1000) Subject: Fix typo in 'tandem' word (GH-12998) (GH-12998) X-Git-Tag: v3.8.0a4~75 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b021ba50284cdfc200b5d18dc4dea80218fcbe91;p=python Fix typo in 'tandem' word (GH-12998) (GH-12998) --- diff --git a/Python/ceval.c b/Python/ceval.c index 342dc10af6..4e165c3311 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3207,7 +3207,7 @@ main_loop: } case TARGET(LOAD_METHOD): { - /* Designed to work in tamdem with CALL_METHOD. */ + /* Designed to work in tandem with CALL_METHOD. */ PyObject *name = GETITEM(names, oparg); PyObject *obj = TOP(); PyObject *meth = NULL;