From 1dd9d635a4f0150d14c7609aedc4df888132e0ab Mon Sep 17 00:00:00 2001 From: Lemon73-Computing Date: Sat, 27 Apr 2024 18:23:43 +0900 Subject: [PATCH] fix: typo in code --- AnovSyntax/Anov.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AnovSyntax/Anov.cs b/AnovSyntax/Anov.cs index 7ebd0a7..f07a0e8 100644 --- a/AnovSyntax/Anov.cs +++ b/AnovSyntax/Anov.cs @@ -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() + "\"";