Skip to content

Commit

Permalink
Fixing errors in comments (#3483)
Browse files Browse the repository at this point in the history
* Update OpCode.cs

* Update JumpTable.Compound.cs

* Update OpCode.cs
  • Loading branch information
chenzhitong committed Sep 12, 2024
1 parent 9788280 commit ff58726
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Neo.VM/JumpTable/JumpTable.Compound.cs
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ public virtual void ClearItems(ExecutionEngine engine, Instruction instruction)
/// </summary>
/// <param name="engine">The execution engine.</param>
/// <param name="instruction">The instruction being executed.</param>
/// <remarks>Pop 1, Push 0</remarks>
/// <remarks>Pop 1, Push 1</remarks>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public virtual void PopItem(ExecutionEngine engine, Instruction instruction)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Neo.VM/OpCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2028,7 +2028,7 @@ public enum OpCode : byte
/// Using this opcode will need to dup the array before using it.
///
/// <remarks>
/// Push: 0 item(s)
/// Push: 1 item(s)
/// Pop: 1 item(s)
/// </remarks>
/// </summary>
Expand Down

0 comments on commit ff58726

Please sign in to comment.