diff options
author | Oleksandr Redko <[email protected]> | 2023-02-18 22:47:35 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-03-02 16:32:32 +0100 |
commit | 36ce3a4a9d3933772085991c8636915ffd5cb3af (patch) | |
tree | e7eaf3e0ea689b227fe012eab7c0f16205d6cd8c /hugolib/content_map.go | |
parent | 17e60b77e15664ba37f5c0b911cf70c36d496d80 (diff) | |
download | hugo-36ce3a4a9d3933772085991c8636915ffd5cb3af.tar.gz hugo-36ce3a4a9d3933772085991c8636915ffd5cb3af.zip |
Correct typos in Go comments
Diffstat (limited to 'hugolib/content_map.go')
-rw-r--r-- | hugolib/content_map.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hugolib/content_map.go b/hugolib/content_map.go index 6849998b6..bf77e7f1b 100644 --- a/hugolib/content_map.go +++ b/hugolib/content_map.go @@ -43,7 +43,7 @@ import ( // // For bundled pages (/mybundle/index.md), we use the folder name. // -// An exmple of a full page key would be "/blog/__hb_page1__hl_" +// An example of a full page key would be "/blog/__hb_page1__hl_" // // Bundled resources are stored in the `resources` having their path prefixed // with the bundle they belong to, e.g. @@ -317,7 +317,7 @@ type contentMap struct { // There are currently two cases where this is used: // 1. Short name lookups in ref/relRef, e.g. using only "mypage.md" without a path. // 2. Links resolved from a remounted content directory. These are restricted to the same module. - // Both of the above cases can result in ambigous lookup errors. + // Both of the above cases can result in ambiguous lookup errors. pageReverseIndex *contentTreeReverseIndex // Section nodes. |