Skip to content

Commit

Permalink
fix typo: _py_set_opocde -> _py_set_opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
carljm committed Dec 15, 2022
1 parent ae83c78 commit a34928a
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
Original file line number Diff line number Diff line change
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
Loading

0 comments on commit a34928a

Please sign in to comment.