Skip to content

Commit

Permalink
fix: typo in code
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemon73-Computing committed Apr 27, 2024
1 parent 4bb209a commit 1dd9d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AnovSyntax/Anov.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static string Read(string str)
if (match.Success)
_return += " (" + match.Groups[1].Value.Trim() + ")";

// Read "[conversatioc-content]"
// Read "[conversation-content]"
match = Regex.Match(str, @"\[(.*?)\]");
if (match.Success)
_return += " \"" + match.Groups[1].Value.Trim() + "\"";
Expand Down

0 comments on commit 1dd9d63

Please sign in to comment.