From 691614dae4849cf9fcb29fc52d043dbdd590943f Mon Sep 17 00:00:00 2001 From: makeworld Date: Tue, 29 Dec 2020 17:40:37 -0500 Subject: [PATCH] Update changelog and fix mispelling --- CHANGELOG.md | 2 +- display/display.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bc0849..ce094ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - More reliable start, no more flash of unindented text, or text that stays unindented (#107) - Pages with ANSI resets don't use the terminal's default text and background colors (#107) - ANSI documents don't leak color into the left margin (#107) -- Rendering very long documents is now ~96% faster, excluding gemtext parsing (#107) +- Rendering very long documents is now ~96% faster, excluding gemtext parsing (#26, #107) ## [1.7.2] - 2020-12-21 diff --git a/display/display.go b/display/display.go index 34ea158..3a3d34f 100644 --- a/display/display.go +++ b/display/display.go @@ -90,7 +90,7 @@ func Init(version, commit, builtBy string) { browser.AddTab(strconv.Itoa(i), makeTabLabel(strconv.Itoa(i+1)), makeContentLayout(tabs[i].view)) if tabs[i] == t { // Reformat page ASAP, in the middle of loop - // TODO The per-tab mutext is unecessary if the global one is used + // TODO The per-tab mutext is unnecessary if the global one is used t.reformatMu.Lock() // Only one reformat job per tab reformatPageAndSetView(t, t.page) t.reformatMu.Unlock()