Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing errors in comments #3483

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 2 additions & 2 deletions src/Neo.VM/OpCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1973,7 +1973,7 @@ public enum OpCode : byte
/// The item on top of main stack is removed and appended to the second item on top of the main stack.
/// When we use this opcode, we should dup the second item on top of the main stack before using it.
///
/// <example> a a b -> a.concat(b)</example>
/// <example> a b -> a.concat(b)</example>
AnnaShaleva marked this conversation as resolved.
Show resolved Hide resolved
///
/// <remarks>
/// Push: 0 item(s)
Expand Down 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
Loading