Fix typo in 'tandem' word (GH-12998) (GH-12998)

diff --git a/Python/ceval.c b/Python/ceval.c
index 342dc10..4e165c3 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3207,7 +3207,7 @@
         }
 
         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;