From 49b239dadaad2899ec7e942ccfbc090051e1330f Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Dec 2025 14:48:59 +0100 Subject: [PATCH] Fix world age docs link, point to correct manual version --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 4b0404b738b5a..317602d2aacee 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -164,7 +164,7 @@ New language features entry points. Entry points can be marked using `Base.Experimental.entrypoint` ([#55047]). Not all code is expected to work with this option, and since it is experimental you may encounter problems. * Redefinition of constants is now well defined and follows world age semantics ([#57253]). Additional redefinitions - (e.g. of types) are now allowed. See [the new manual chapter on world age](https://docs.julialang.org/en/v1.13-dev/manual/worldage/). + (e.g. of types) are now allowed. See [the new manual chapter on world age](https://docs.julialang.org/en/v1/manual/worldage/). * A new keyword argument `usings::Bool` has been added to `names`, returning all names visible via `using` ([#54609]). * The `@atomic` macro family now supports reference assignment syntax, e.g. `@atomic :monotonic v[3] += 4`,