Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark D. Blackwell <markdblackwell01@gmail.com>2016-08-13 16:09:51 +0300
committerdigitalcraftsman <digitalcraftsman@protonmail.com>2016-08-18 21:42:40 +0300
commitbe429d22681f9486b9ee47b53b93c3beb97e3b17 (patch)
treec96f8348527070d09815651fb7b9111a80f10cb2 /helpers
parent8474b9defeab3cb1ea8c697bbe16ba354b578c94 (diff)
docs: Correct all erroneous swaps of "it's" and "its"
Diffstat (limited to 'helpers')
-rw-r--r--helpers/url.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/url.go b/helpers/url.go
index 00bcd67c9..927e3c87c 100644
--- a/helpers/url.go
+++ b/helpers/url.go
@@ -107,7 +107,7 @@ func URLize(uri string) string {
// escape unicode letters
parsedURI, err := url.Parse(sanitized)
if err != nil {
- // if net/url can not parse URL it's meaning Sanitize works incorrect
+ // if net/url can not parse URL it means Sanitize works incorrectly
panic(err)
}
x := parsedURI.String()