summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-03-28 01:19:46 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-03-28 01:19:46 +0200
commit5989c4d46474298e7f9f26ddeec8e3ec62ae5677 (patch)
tree3b0383f0dde0c00c18f266cdd2c06fda99c76077
parentaf55ec76618091677385c7fdc66deece1eae4375 (diff)
helpers, output: Fix spelling
-rw-r--r--helpers/baseURL.go2
-rw-r--r--output/outputFormat.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/helpers/baseURL.go b/helpers/baseURL.go
index 50265fe36..5ea82b26d 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 33ab71d43..797c7ae2d 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.