Skip to content

Commit c4de269

Browse files
committed
update docs
1 parent 8c229a8 commit c4de269

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/gen_docs.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,8 +786,8 @@ Inspired by [TextPlots.jl](https://github.com/sunetos/TextPlots.jl), which in tu
786786
main() = begin
787787
rng = StableRNG(1337)
788788
789-
bb = parse(Bool, get(ENV, "BB", "false")) ? 9 : nothing
790-
bb_glyph = parse(Bool, get(ENV, "BB_GL", "false")) ? 8 : nothing
789+
bb = Base.get_bool_env("BB", false) ? 9 : nothing
790+
bb_glyph = Base.get_bool_env("BB_GL", false) ? 8 : nothing
791791
792792
banner()
793793
"""

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ test_ref(reference, actual) = @test_reference(
3838
format = "TXT"
3939
)
4040

41-
is_ci() = get(ENV, "CI", "false") == "true"
41+
is_ci() = Base.get_bool_env("CI", false)
4242

4343
# helpers
4444

0 commit comments

Comments
 (0)