From b4d82dbe35a8ed2d2dca093ca63860ea34d7e970 Mon Sep 17 00:00:00 2001 From: Rafael Fourquet Date: Mon, 27 Aug 2018 12:53:42 +0200 Subject: [PATCH] fix typo in append! doc (cherry picked from commit 3ab56f19a81a1d658a02750b48abbd63950ef248) --- base/array.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/array.jl b/base/array.jl index 7559c29ab1d9d..a6364188b8977 100644 --- a/base/array.jl +++ b/base/array.jl @@ -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)