We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a54f7a commit 059ae3dCopy full SHA for 059ae3d
modules/csv/csv.go
@@ -73,7 +73,7 @@ func determineDelimiter(ctx *markup.RenderContext, data []byte) rune {
73
// This finds all quoted strings that have escaped quotes.
74
var quoteRegexp = regexp.MustCompile(`"[^"]*"`)
75
76
-// removeQuotedStrings uses the quoteRegexp to remove all quoted strings so that we can realiably have each row on one line
+// removeQuotedStrings uses the quoteRegexp to remove all quoted strings so that we can reliably have each row on one line
77
// (quoted strings often have new lines within the string)
78
func removeQuotedString(text string) string {
79
return quoteRegexp.ReplaceAllLiteralString(text, "")
0 commit comments