Skip to content

Commit

Permalink
fix typo in append! doc
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet committed Aug 27, 2018
1 parent 5013cfa commit 3ab56f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ julia> append!([1, 2, 3], [4, 5, 6])
```
Use [`push!`](@ref) to add individual items to `collection` which are not already
themselves in another collection. The result is of the preceding example is equivalent to
themselves in another collection. The result of the preceding example is equivalent to
`push!([1, 2, 3], 4, 5, 6)`.
"""
function append!(a::Array{<:Any,1}, items::AbstractVector)
Expand Down

0 comments on commit 3ab56f1

Please sign in to comment.