Fix typos in source code (#2322)

This commit is contained in:
freddii
2021-01-15 02:10:09 +01:00
committed by GitHub
parent e922704f72
commit 58ac1fb2fa
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ type Delimiter struct {
str *string
}
// String returns the string representation of a Delimeter.
// String returns the string representation of a Delimiter.
func (d Delimiter) String() string {
return fmt.Sprintf("Delimiter{regex: %v, str: &%q}", d.regex, *d.str)
}