Skip to content

Commit dc790f7

Browse files
carljmfarfella
authored andcommitted
GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259)
Typo introduced in #100223. Automerge-Triggered-By: GH:brandtbucher
1 parent 5475fe9 commit dc790f7

File tree

2 files changed

+66
-66
lines changed

2 files changed

+66
-66
lines changed

Include/cpython/code.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ typedef union {
2828
#define _Py_OPARG(word) ((word).oparg)
2929

3030
static inline void
31-
_py_set_opocde(_Py_CODEUNIT *word, uint8_t opcode)
31+
_py_set_opcode(_Py_CODEUNIT *word, uint8_t opcode)
3232
{
3333
word->opcode = opcode;
3434
}

0 commit comments

Comments
 (0)