From 45d47a8b5e5f867bbf9e0f5299763efb98d02516 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Fri, 14 Aug 2015 15:11:30 +0100 Subject: [PATCH] Fixed comment typo --- Assets/Fungus/Thirdparty/CSVParser/CsvParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Thirdparty/CSVParser/CsvParser.cs b/Assets/Fungus/Thirdparty/CSVParser/CsvParser.cs index f0a53571..6d77445a 100755 --- a/Assets/Fungus/Thirdparty/CSVParser/CsvParser.cs +++ b/Assets/Fungus/Thirdparty/CSVParser/CsvParser.cs @@ -189,7 +189,7 @@ namespace Ideafixxxer.CsvParser { var context = new ParserContext(); - // Handle both Winodws and Mac line endings + // Handle both Windows and Mac line endings string[] lines = csvData.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries); ParserState currentState = ParserState.LineStartState;