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 }, }