Skip to content

Commit

Permalink
update docs (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg authored Nov 2, 2024
1 parent 8c229a8 commit 57089d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/gen_docs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -786,8 +786,8 @@ Inspired by [TextPlots.jl](https://github.com/sunetos/TextPlots.jl), which in tu
main() = begin
rng = StableRNG(1337)
bb = parse(Bool, get(ENV, "BB", "false")) ? 9 : nothing
bb_glyph = parse(Bool, get(ENV, "BB_GL", "false")) ? 8 : nothing
bb = Base.get_bool_env("BB", false) ? 9 : nothing
bb_glyph = Base.get_bool_env("BB_GL", false) ? 8 : nothing
banner()
"""
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test_ref(reference, actual) = @test_reference(
format = "TXT"
)

is_ci() = get(ENV, "CI", "false") == "true"
is_ci() = Base.get_bool_env("CI", false)

# helpers

Expand Down

0 comments on commit 57089d7

Please sign in to comment.