Skip to content

Commit

Permalink
remove a stray !
Browse files Browse the repository at this point in the history
  • Loading branch information
akiraveliara committed Sep 25, 2023
1 parent 57c2afd commit c8add31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bundles/ValueCollections/ValueStack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ T item
/// <exception cref="InvalidOperationException">Thrown if the stack was empty.</exception>
public T Pop()
{
if (!this.TryPop(out T item))
if (this.TryPop(out T item))
{
return item;
}
Expand Down

0 comments on commit c8add31

Please sign in to comment.