Skip to content

Commit

Permalink
fixed typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
BigPeet authored Mar 18, 2021
1 parent 6708502 commit 8f1c31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gamelog/src/gamelog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static void CutOff(std::string& sentence)
// E.g., "Player activates an ability of Blast Zone. (X is 2) ( ... )."
end = i + 1;

// Check if another sentence might be follow.
// Check if another sentence might be following.
if (((i + 2) > len) || (sentence[i + 1] != ' ') || (!IsPrintableASCII(sentence[i + 2])))
{
// Definitive cut off point.
Expand Down

0 comments on commit 8f1c31c

Please sign in to comment.