diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 00:55:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 15:55:27 -0700 |
commit | db693df3e112c5a61f2cbef63eedce3a36520ded (patch) | |
tree | 9d9fde2302ea951001e2d7eed67e2648f1457208 /Python/specialize.c | |
parent | 6c942a86a4fb4c8b731cb1bd2933dba554eb79cd (diff) | |
download | cpython-db693df3e112c5a61f2cbef63eedce3a36520ded.tar.gz cpython-db693df3e112c5a61f2cbef63eedce3a36520ded.zip |
Fix typos in the Python directory (GH-28767)
Diffstat (limited to 'Python/specialize.c')
-rw-r--r-- | Python/specialize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index 1ab79bf3ea0..4e025384a62 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -588,7 +588,7 @@ specialize_dict_access( { assert(kind == NON_OVERRIDING || kind == NON_DESCRIPTOR || kind == ABSENT || kind == BUILTIN_CLASSMETHOD || kind == PYTHON_CLASSMETHOD); - // No desciptor, or non overriding. + // No descriptor, or non overriding. if (type->tp_dictoffset < 0) { SPECIALIZATION_FAIL(base_op, SPEC_FAIL_OUT_OF_RANGE); return 0; |