Skip to content

Commit

Permalink
Regenerate helpdb with fewer ReST errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahao committed Apr 26, 2015
1 parent d39b475 commit c9ac270
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions doc/helpdb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Any[
linear indexing behaviors should define \"linearindexing\" in the
type-domain:
Base.linearindexing{T<:MyArray}(::Type{T}) = Base.LinearFast()
Base.linearindexing{T<:MyArray}(::Type{T}) = Base.LinearFast()
"),

Expand Down Expand Up @@ -1368,11 +1368,20 @@ Any[
"),

("Base","which","which(symbol)
Return the module in which the binding for the variable referenced
by \"symbol\" was created.
"),

("Base","@which","@which()
Evaluates the arguments to the specified function call, and returns
the \"Method\" object for the method that would be called for those
arguments.
Applied to a function call, it evaluates the arguments to the
specified function call, and returns the \"Method\" object for the
method that would be called for those arguments. Applied to a
variable, it returns the module in which the variable was bound. It
calls out to the \"which\" function.
"),

Expand Down Expand Up @@ -5175,11 +5184,12 @@ Millisecond(v)
("Base","cp","cp(src::AbstractString, dst::AbstractString; remove_destination::Bool=false, follow_symlinks::Bool=false)
Copy the file, link, or directory from *src* to *dest*.
\"remove_destination=true\" will first remove an existing `dst`.
\"remove_destination=true\" will first remove an existing *dst*.
If `follow_symlinks=false`, and src is a symbolic link, dst will be created as a symbolic link.
If `follow_symlinks=true` and src is a symbolic link, dst will be a copy of the file or directory
`src` refers to.
If *follow_symlinks=false*, and src is a symbolic link, dst will be
created as a symbolic link. If *follow_symlinks=true* and src is a
symbolic link, dst will be a copy of the file or directory *src*
refers to.
"),

Expand Down

0 comments on commit c9ac270

Please sign in to comment.