Skip to content

Commit 1f7f1e5

Browse files
committed
VirtualMachine: Fix a typo in docs
1 parent da9fd7e commit 1f7f1e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/scratchcpp/virtualmachine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ enum Opcode
7676
OP_STR_CONTAINS, /*!< Stores true in the last register if the string stored in the second last register contains the substring in the last register. */
7777
OP_EXEC, /*!< Calls the function with the index in the argument. */
7878
OP_INIT_PROCEDURE, /*!< Initializes the list of procedure (custom block) arguments. */
79-
OP_CALL_PROCEDURE, /*! Calls the procedure (custom block) with the index in the argument. */
79+
OP_CALL_PROCEDURE, /*!< Calls the procedure (custom block) with the index in the argument. */
8080
OP_ADD_ARG, /*!< Adds a procedure (custom block) argument with the value from the last register. */
8181
OP_READ_ARG, /*!< Reads the procedure (custom block) argument with the index in the argument and stores the value in the last register. */
8282
OP_BREAK_FRAME, /*!< Breaks current frame at the end of the loop. */

0 commit comments

Comments
 (0)