Skip to content

Commit

Permalink
fix: missing ; at end of line
Browse files Browse the repository at this point in the history
  • Loading branch information
coder2000 committed Jul 2, 2024
1 parent 04afb73 commit 2edf010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Ubiety.Stringprep.Core/ProhibitedValueStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public string Run(string input)
return input;
}
}
}
}
4 changes: 2 additions & 2 deletions src/Ubiety.Stringprep.Core/ValueRangeCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private static List<int> DoRemove(List<int> list, IList<int> removals)
}
else
{
j += 2
j += 2;
}
}
}
Expand Down Expand Up @@ -259,4 +259,4 @@ private static List<int> DoReduce(List<int> list)
return list;
}
}
}
}

0 comments on commit 2edf010

Please sign in to comment.