From dfee5d3057ed91d9db2f06dd9c1929e97c21e1cc Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Thu, 25 Jul 2024 13:49:05 +0200 Subject: [PATCH] fix at-main docstring to not code quote a compat box --- base/client.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/client.jl b/base/client.jl index 7fc40d7906879..aa0739eaed0fe 100644 --- a/base/client.jl +++ b/base/client.jl @@ -632,10 +632,10 @@ module MyApp end const main = MyApp.main # `julia` Will *NOT* execute MyApp.main unless there is a separate `@main` annotation in `Main` +``` !!! compat "Julia 1.11" This macro is new in Julia 1.11. At present, the precise semantics of `@main` are still subject to change. -``` """ macro main(args...) if !isempty(args)