From: Bjørn Erik Pedersen Date: Mon, 27 Mar 2017 23:19:46 +0000 (+0200) Subject: helpers, output: Fix spelling X-Git-Tag: v0.20~59 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5989c4d46474298e7f9f26ddeec8e3ec62ae5677;p=brevno-suite%2Fhugo helpers, output: Fix spelling --- diff --git a/helpers/baseURL.go b/helpers/baseURL.go index 50265fe3..5ea82b26 100644 --- a/helpers/baseURL.go +++ b/helpers/baseURL.go @@ -30,7 +30,7 @@ func (b BaseURL) String() string { return b.urlStr } -// Protocol is normaly on the form "scheme://", i.e. "webcal://". +// Protocol is normally on the form "scheme://", i.e. "webcal://". func (b BaseURL) WithProtocol(protocol string) (string, error) { u := b.URL() diff --git a/output/outputFormat.go b/output/outputFormat.go index 33ab71d4..797c7ae2 100644 --- a/output/outputFormat.go +++ b/output/outputFormat.go @@ -96,7 +96,7 @@ func (formats Formats) GetByName(name string) (f Format, found bool) { return } -// Format represents an output represenation, usually to a file on disk. +// Format represents an output representation, usually to a file on disk. type Format struct { // The Name is used as an identifier. Internal output formats (i.e. HTML and RSS) // can be overridden by providing a new definition for those types.