Fix typos in comments (#120481)

This commit is contained in:
Xie Yanbo 2024-06-20 11:16:14 +08:00 committed by GitHub
parent 285f42c850
commit 656a1c8108
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -1301,7 +1301,7 @@ PyObject *descr, DescriptorClassification kind, bool is_method)
}
/* Cache entries must be unsigned values, so we offset the
* dictoffset by MANAGED_DICT_OFFSET.
* We do the reverese offset in LOAD_ATTR_METHOD_LAZY_DICT */
* We do the reverse offset in LOAD_ATTR_METHOD_LAZY_DICT */
dictoffset -= MANAGED_DICT_OFFSET;
assert(((uint16_t)dictoffset) == dictoffset);
cache->dict_offset = (uint16_t)dictoffset;