Skip to content

Commit

Permalink
help("@macro") works; describe it. closes JuliaLang#1461
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Mar 15, 2013
1 parent 0b94228 commit e421b8b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions base/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -293,15 +293,16 @@ end
function help()
init_help()
print(
" Welcome to Julia. The full manual is available at
"""
Welcome to Julia. The full manual is available at
https://docs.julialang.org
To get help on a function, try help(function). To search all help text,
try apropos(\"string\"). To see available functions, try help(category),
for one of the following categories:
To get help, try help(function), help("@macro"), or help("variable").
To search all help text, try apropos("string"). To see available functions,
try help(category), for one of the following categories:
")
""")
for cat = help_category_list
if !isempty(help_category_dict[cat])
print(" ")
Expand Down

0 comments on commit e421b8b

Please sign in to comment.