From 1b0020c8a2b74e95640696977ce7d8cb7be4c18c Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Thu, 25 Jul 2024 19:13:02 +0200 Subject: [PATCH] fix at-main docstring to not code quote a compat box (#55242) --- 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)