Skip to content

Commit 583de6c

Browse files
authored
Fix doc links (#429)
1 parent e176da8 commit 583de6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/ast.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The key advantage of lowered representation is that it is fairly well circumscri
1313
- Names are fully resolved by module
1414
- Macros are expanded
1515

16-
[Julia AST](https://docs.julialang.org/en/latest/devdocs/ast/) describes the kinds of
16+
[Julia AST](https://docs.julialang.org/en/v1/devdocs/ast/) describes the kinds of
1717
objects that can appear in lowered code.
1818

1919
Let's start with a demonstration on a simple function:

docs/src/internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Test Passed
167167
Code that defines new `struct`s, new methods, or new modules is a bit more complicated
168168
and requires special handling. In such cases, calling `finish_and_return!` on a frame that
169169
defines these new objects and then calls them can trigger a
170-
[world age error](https://docs.julialang.org/en/latest/manual/methods/#Redefining-Methods-1),
170+
[world age error](https://docs.julialang.org/en/v1/manual/methods/#Redefining-Methods-1),
171171
in which the method is considered to be too new to be run by the currently compiled code.
172172
While one can resolve this by using `Base.invokelatest`, we'd have to use that strategy
173173
throughout the entire package. This would cause a major reduction in performance.

0 commit comments

Comments
 (0)