summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMd Sadman Chowdhury <61442059+SpicyCatGames@users.noreply.github.com>2023-07-01 19:47:14 (GMT)
committerGitHub <noreply@github.com>2023-07-01 19:47:14 (GMT)
commit822db860eada721742f878653d7ac9364ed8df59 (patch)
tree2991c6995fb4027c7e10797150305f5290a0281f /Objects
parentc2622a0d82078a7ab17597707b4dd42446a043ae (diff)
downloadcpython-822db860eada721742f878653d7ac9364ed8df59.zip
cpython-822db860eada721742f878653d7ac9364ed8df59.tar.gz
cpython-822db860eada721742f878653d7ac9364ed8df59.tar.bz2
Fix duplicate word typos in comments (#106225)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/frameobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 98f4a03..0158d72 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -1186,7 +1186,7 @@ frame_get_var(_PyInterpreterFrame *frame, PyCodeObject *co, int i,
// (likely) MAKE_CELL must have executed already.
value = PyCell_GET(value);
}
- // (likely) Otherwise it it is an arg (kind & CO_FAST_LOCAL),
+ // (likely) Otherwise it is an arg (kind & CO_FAST_LOCAL),
// with the initial value set when the frame was created...
// (unlikely) ...or it was set to some initial value by
// an earlier call to PyFrame_LocalsToFast().