GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259)

Typo introduced in #100223.

Automerge-Triggered-By: GH:brandtbucher
This commit is contained in:
Carl Meyer 2022-12-14 17:39:00 -07:00 committed by GitHub
parent ae83c78215
commit bdd86741be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 66 additions and 66 deletions

View file

@ -28,7 +28,7 @@ typedef union {
#define _Py_OPARG(word) ((word).oparg)
static inline void
_py_set_opocde(_Py_CODEUNIT *word, uint8_t opcode)
_py_set_opcode(_Py_CODEUNIT *word, uint8_t opcode)
{
word->opcode = opcode;
}