From 3e689f2cf352ac0017eb03bab558043ad5604577 Mon Sep 17 00:00:00 2001 From: coliff Date: Mon, 10 Feb 2025 23:50:52 +0900 Subject: [PATCH] Docs: Fixes a few typos --- CHANGELOG.md | 4 ++-- docs/config/_default/params.toml | 2 +- static/js/auto-complete.js | 2 +- static/js/search.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 045f68b6e8..f3ff45e2c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,7 +74,7 @@ ### Fixes -- [**bug**] children: remove superflous text ".LinkTitle" [#942](https://github.com/McShelby/hugo-theme-relearn/issues/942) +- [**bug**] children: remove superfluous text ".LinkTitle" [#942](https://github.com/McShelby/hugo-theme-relearn/issues/942) --- @@ -1845,7 +1845,7 @@ ### Maintenance - [**task**] theme: ensure IE11 compatibility [#89](https://github.com/McShelby/hugo-theme-relearn/issues/89) -- [**task**] docs: Arrr! showcase multilang featurrre [#87](https://github.com/McShelby/hugo-theme-relearn/issues/87) +- [**task**] docs: Arrr! showcase multilang feature [#87](https://github.com/McShelby/hugo-theme-relearn/issues/87) --- diff --git a/docs/config/_default/params.toml b/docs/config/_default/params.toml index 9e53e9cbda..0e9cc4f769 100644 --- a/docs/config/_default/params.toml +++ b/docs/config/_default/params.toml @@ -13,7 +13,7 @@ linkTitle = 'Relearn' # The author of your site. # Default: not set -# This will be used in HTML meta tags, the opengraph protocol and twitter +# This will be used in HTML meta tags, the open graph protocol and twitter # cards. # You can also set `author.email` if you want to publish this information. author.name = 'Sören Weber' diff --git a/static/js/auto-complete.js b/static/js/auto-complete.js index b75966b5c1..b8ea327288 100644 --- a/static/js/auto-complete.js +++ b/static/js/auto-complete.js @@ -92,7 +92,7 @@ var autoComplete = (function(){ pageXOffset = window.pageXOffset || document.documentElement.scrollLeft; pageYOffset = window.pageYOffset || document.documentElement.scrollTop; } - // Is this really the job of the tool or should it be defered to the user? + // Is this really the job of the tool or should it be deferred to the user? // that.sc.style.left = Math.round(rect.left + pageXOffset + o.offsetLeft - parentOffsetLeft) + 'px'; // that.sc.style.top = Math.round(rect.bottom + pageYOffset + o.offsetTop - parentOffsetTop) + 'px'; // that.sc.style.width = Math.round(rect.right - rect.left) + 'px'; // outerWidth diff --git a/static/js/search.js b/static/js/search.js index cb86edf77a..ff8d2b830d 100644 --- a/static/js/search.js +++ b/static/js/search.js @@ -152,7 +152,7 @@ function search(term) { function searchPatterns(word) { // for short words high amounts of typos doesn't make sense - // for long words we allow less typos because this largly increases search time + // for long words we allow less typos because this largely increases search time var typos = [ { len: -1, typos: 1 }, { len: 60, typos: 2 },