Skip to content

Commit 3f8327c

Browse files
authored
Fix some flaws in documentation (#76)
1 parent 36f9140 commit 3f8327c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaDebug.github.io/LoweredCodeUtils.jl/stable)
44

5-
This package performs operations on Julia's [lowered AST](https://docs.julialang.org/en/latest/devdocs/ast/). See the documentation for details.
5+
This package performs operations on Julia's [lowered AST](https://docs.julialang.org/en/v1/devdocs/ast/#Lowered-form). See the documentation for details.

src/codeedges.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ end
145145
146146
Interweave display of code and links.
147147
148-
!!! compat Julia 1.6
148+
!!! compat "Julia 1.6"
149149
This function produces dummy output if suitable support is missing in your version of Julia.
150+
150151
"""
151152
function print_with_code(io::IO, src::CodeInfo, cl::CodeLinks)
152153
function preprint(io::IO)
@@ -502,8 +503,9 @@ end
502503
503504
Interweave display of code and edges.
504505
505-
!!! compat Julia 1.6
506+
!!! compat "Julia 1.6"
506507
This function produces dummy output if suitable support is missing in your version of Julia.
508+
507509
"""
508510
function print_with_code(io::IO, src::CodeInfo, edges::CodeEdges)
509511
function preprint(io::IO)
@@ -890,8 +892,9 @@ end
890892
891893
Mark each line of code with its requirement status.
892894
893-
!!! compat Julia 1.6
895+
!!! compat "Julia 1.6"
894896
This function produces dummy output if suitable support is missing in your version of Julia.
897+
895898
"""
896899
function print_with_code(io::IO, src::CodeInfo, isrequired::AbstractVector{Bool})
897900
nd = ndigits(length(isrequired))

0 commit comments

Comments
 (0)