Skip to content

Commit e613e52

Browse files
authored
Merge pull request #189 from jawn/patch-1
Fix spelling in comments
2 parents 3f5efdf + 0fe3784 commit e613e52

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)