From 7fe54a109e068d7ab6475b59f6e4587644183ef9 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Fri, 1 Nov 2024 18:40:08 +0100 Subject: [PATCH] correct spelling errors --- src/ticks.jl | 2 +- test/runtests.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ticks.jl b/src/ticks.jl index 1d7e9e4..51b11bf 100644 --- a/src/ticks.jl +++ b/src/ticks.jl @@ -399,7 +399,7 @@ function optimize_ticks( Millisecond(1), ] - # ticks on week boundries + # ticks on week boundaries if x_min + Day(7) < x_max || scale ≡ :week push!(ticks, x_min) while true diff --git a/test/runtests.jl b/test/runtests.jl index f1bb47a..a77a657 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -83,7 +83,7 @@ end @testset "sampling" begin # github.com/MakieOrg/Makie.jl/issues/2635 cmap = cgrad([:black, :white, :orange], [0, 0.2, 1]) - # sample ouside the given values + # sample outside the given values @test RGB(get(cmap, 0.15)) ≈ RGB(0.75, 0.75, 0.75) @test RGB(get(cmap, 0.5)) ≈ RGB(1.0, 0.86764705, 0.625) @test RGB(get(cmap, 0.8)) ≈ RGB(1.0, 0.73529411, 0.25) @@ -91,7 +91,7 @@ end @testset "reverse" begin cmap = reverse(cgrad([:black, :white, :orange], [0, 0.2, 1])) - # sample ouside the given values + # sample oustide the given values @test RGB(get(cmap, 0.15)) ≈ RGB(1.0, 0.71323529, 0.1875) @test RGB(get(cmap, 0.5)) ≈ RGB(1.0, 0.86764705, 0.625) @test RGB(get(cmap, 0.75)) ≈ RGB(1.0, 0.97794117, 0.9375)