From 5989c4d46474298e7f9f26ddeec8e3ec62ae5677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 28 Mar 2017 01:19:46 +0200 Subject: [PATCH] helpers, output: Fix spelling --- helpers/baseURL.go | 2 +- output/outputFormat.go | 2 +- 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.