Skip to content

Commit 059ae3d

Browse files
zeripathdelvh
andauthored
Update modules/csv/csv.go
Co-authored-by: delvh <[email protected]>
1 parent 8a54f7a commit 059ae3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/csv/csv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func determineDelimiter(ctx *markup.RenderContext, data []byte) rune {
7373
// This finds all quoted strings that have escaped quotes.
7474
var quoteRegexp = regexp.MustCompile(`"[^"]*"`)
7575

76-
// removeQuotedStrings uses the quoteRegexp to remove all quoted strings so that we can realiably have each row on one line
76+
// removeQuotedStrings uses the quoteRegexp to remove all quoted strings so that we can reliably have each row on one line
7777
// (quoted strings often have new lines within the string)
7878
func removeQuotedString(text string) string {
7979
return quoteRegexp.ReplaceAllLiteralString(text, "")

0 commit comments

Comments
 (0)