Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dakota628 committed Jul 21, 2015
1 parent 5e71962 commit e06b7c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtav_console/Commands/CommandParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private void Parse()
if (IsStartOfCodeBlock(s)) { //Found begining of code block
TrimCodeBlockStart(ref s);

if (IsEndOfCodeBlock(s)) { //This is also the end of ths string
if (IsEndOfCodeBlock(s)) { //This is also the end of the code block
TrimCodeBlockEnd(ref s);
AddToken(CommandTokenKind.CodeBlock, s);
} else {
Expand All @@ -74,7 +74,7 @@ private void Parse()
} else if (IsStartOfString(s)) { //Found begining of string
TrimStringStart(ref s);

if (IsEndOfString(s)) { //This is also the end of ths string
if (IsEndOfString(s)) { //This is also the end of the string
TrimStringEnd(ref s);
AddToken(CommandTokenKind.String, s);
} else {
Expand Down

0 comments on commit e06b7c4

Please sign in to comment.