Skip to content

Commit

Permalink
basedocs: add 'See also' for getproperty and setproperty! (#29570)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9616406)
  • Loading branch information
iblislin authored and KristofferC committed Feb 11, 2019
1 parent 1d7d471 commit 64eb242
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions base/docs/basedocs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1867,13 +1867,19 @@ typeassert
getproperty(value, name::Symbol)
The syntax `a.b` calls `getproperty(a, :b)`.
See also [`propertynames`](@ref Base.propertynames) and
[`setproperty!`](@ref Base.setproperty!).
"""
Base.getproperty

"""
setproperty!(value, name::Symbol, x)
The syntax `a.b = c` calls `setproperty!(a, :b, c)`.
See also [`propertynames`](@ref Base.propertynames) and
[`getproperty`](@ref Base.getproperty).
"""
Base.setproperty!

Expand Down

0 comments on commit 64eb242

Please sign in to comment.