Skip to content

Commit

Permalink
Fixed #95
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheric0210 committed Mar 5, 2024
1 parent 0391a55 commit 35bd11d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class InvalidWordSubcheck : IWordTableSubcheck

private bool IsInvalid(string content)
{
if (content.Length == 1)
if (content.Length <= 1)
return true;

var first = content[0];
Expand Down

0 comments on commit 35bd11d

Please sign in to comment.