Skip to content

Commit 0fe3784

Browse files
authored
Fix spelling in comments
1 parent 3f5efdf commit 0fe3784

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebApiContrib.Core.Formatter.Csv/CsvOutputFormatter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ public async override Task WriteResponseBodyAsync(OutputFormatterWriteContext co
127127

128128
var _val = val.Value.ToString();
129129

130-
//Escape quotas
130+
//Escape quotes
131131
_val = _val.Replace("\"", "\"\"");
132132

133-
//Check if the value contans a delimiter and place it in quotes if so
133+
//Check if the value contains a delimiter and place it in quotes if so
134134
if (_val.Contains(_options.CsvDelimiter))
135135
_val = string.Concat("\"", _val, "\"");
136136

0 commit comments

Comments
 (0)