Skip to content

Commit

Permalink
GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259)
Browse files Browse the repository at this point in the history
Typo introduced in #100223.

Automerge-Triggered-By: GH:brandtbucher
  • Loading branch information
carljm committed Dec 15, 2022
1 parent ae83c78 commit bdd8674
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion Include/cpython/code.h
Expand Up @@ -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;
}
Expand Down

0 comments on commit bdd8674

Please sign in to comment.