From 036ccafb0a58978888864eb7656cbbd7f5ce8b4c Mon Sep 17 00:00:00 2001 From: Daniel Rocha Date: Sun, 6 Nov 2022 16:46:50 +0100 Subject: [PATCH] chore: wrap some long lines --- README.md | 4 ++-- cmd/htp/main.go | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7dbe2c6..ed3f228 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ Since _t₁ ∈ [⌊t₁⌋, ⌊t₁⌋ + 1)_, then: - θ > t₀ - ⌊t₁⌋ - 1 - θ < t₂ - ⌊t₁⌋ -Observe that the closer _t₁_ is to _⌊t₁⌋_ or _⌊t₁⌋ + 1_, smaller is the error in -the second or first equation above, respectively. +Observe that the closer _t₁_ is to _⌊t₁⌋_ or _⌊t₁⌋ + 1_, smaller is the error +in the second or first equation above, respectively. We can repeat the above procedure to improve our estimate of _θ_: diff --git a/cmd/htp/main.go b/cmd/htp/main.go index 369920c..53f9a47 100644 --- a/cmd/htp/main.go +++ b/cmd/htp/main.go @@ -46,8 +46,9 @@ func buildRootCommand() *cobra.Command { trace := &htp.SyncTrace{ Before: func(i int) bool { return i < count }, After: func(i int, round *htp.SyncRound) bool { - logInfo(silent, "(%d/%d) offset: %+.3f (±%.3f) seconds", i+1, count, - model.Offset().Sec(), model.Margin().Sec()) + logInfo( + silent, "(%d/%d) offset: %+.3f (±%.3f) seconds", i+1, + count, model.Offset().Sec(), model.Margin().Sec()) return true }, }