Skip to content

Commit 543824f

Browse files
author
Christopher Doris
committed
docs fixes
1 parent 253e207 commit 543824f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Diff for: docs/Project.toml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
4+
5+
[compat]
6+
Documenter = "0.27" # TODO: upgrade to v1

Diff for: src/abstract/builtins.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Equivalent to `print(...)` in Python.
88
pyprint(args...; kwargs...) = (pydel!(pybuiltins.print(args...; kwargs...)); nothing)
99
export pyprint
1010

11-
"""
12-
pyhelp([x])
13-
14-
Equivalent to `help(x)` in Python.
15-
"""
1611
function _pyhelp(args...)
1712
pyisnone(pybuiltins.help) && error("Python help is not available")
1813
pydel!(pybuiltins.help(args...))
1914
nothing
2015
end
16+
"""
17+
pyhelp([x])
18+
19+
Equivalent to `help(x)` in Python.
20+
"""
2121
pyhelp() = _pyhelp()
2222
pyhelp(x) = _pyhelp(x)
2323
export pyhelp

0 commit comments

Comments
 (0)