We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba928d commit 2a8bdd0Copy full SHA for 2a8bdd0
base/client.jl
@@ -620,11 +620,11 @@ const main = MyApp.main
620
"""
621
macro main(args...)
622
if !isempty(args)
623
- error("USAGE: `@main` is expected to be used as `(@main)` without macro arguments.")
+ error("`@main` is expected to be used as `(@main)` without macro arguments.")
624
end
625
if isdefined(__module__, :main)
626
if Base.binding_module(__module__, :main) !== __module__
627
- error("USAGE: Symbol `main` is already a resolved import in module $(__module__). `@main` must be used in the defining module.")
+ error("Symbol `main` is already a resolved import in module $(__module__). `@main` must be used in the defining module.")
628
629
630
Core.eval(__module__, quote
0 commit comments