Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit c65ae45

Browse files
committed
Fix modulo equals operator while reformatting
1 parent 44d8b58 commit c65ae45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utils/SPSyntaxTidy/SPTokenizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public static SPToken[] Tokenize(string source)
257257
}
258258

259259
if (c == '<' || c == '>' || c == '!' || c == '|' || c == '&' || c == '+' || c == '-' || c == '*' ||
260-
c == '/' || c == '^')
260+
c == '/' || c == '^' || c == '%')
261261
{
262262
if ((i + 1) < length)
263263
{

0 commit comments

Comments
 (0)