Skip to content

Commit

Permalink
Revert ragne syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerBrinks committed Sep 23, 2024
1 parent 8dd5f32 commit d7d20d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExCSS/Model/ValueBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void Apply(Token token)
Add(token);
break;
case TokenType.Whitespace:
if (_values.Count > 0 && IsSlash(_values[^1]) == false)
if (_values.Count > 0 && IsSlash(_values[_values.Count - 1]) == false)
_buffer = token;
break;
case TokenType.Dimension:
Expand Down

0 comments on commit d7d20d3

Please sign in to comment.