Skip to content

Commit

Permalink
Remove trailing slash in "Official https://julialang.org/ release" (J…
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithHafner authored Apr 7, 2024
1 parent 243ebc3 commit c5a3b65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/src/devdocs/probes.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Julia session and get the PID and REPL's task address:
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.6.2 (2021-07-14)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
_/ |\__'_|_|_|\__'_| | Official https://julialang.org release
|__/ |
1> getpid()
Expand Down Expand Up @@ -264,7 +264,7 @@ We can see this problem illustrated with `bpftrace` quite easily. First, in one
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.6.2 (2021-07-14)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
_/ |\__'_|_|_|\__'_| | Official https://julialang.org release
|__/ |
1> getpid()
Expand Down
2 changes: 1 addition & 1 deletion stdlib/InteractiveUtils/src/InteractiveUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function versioninfo(io::IO=stdout; verbose::Bool=false)
if !isempty(Base.GIT_VERSION_INFO.commit_short)
println(io, "Commit $(Base.GIT_VERSION_INFO.commit_short) ($(Base.GIT_VERSION_INFO.date_string))")
end
official_release = Base.TAGGED_RELEASE_BANNER == "Official https://julialang.org/ release"
official_release = Base.TAGGED_RELEASE_BANNER == "Official https://julialang.org release"
if Base.isdebugbuild() || !isempty(Base.TAGGED_RELEASE_BANNER) || (Base.GIT_VERSION_INFO.tagged_commit && !official_release)
println(io, "Build Info:")
if Base.isdebugbuild()
Expand Down

0 comments on commit c5a3b65

Please sign in to comment.