Skip to content

Commit

Permalink
[ci skip] Fix leading space
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyatt committed Jun 26, 2017
1 parent d44b9ce commit bdbcbba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions base/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -756,19 +756,19 @@ julia> resize!([6, 5, 4, 3, 2, 1], 3)
5
4
julia> a = resize!([6, 5, 4, 3, 2, 1], 8);
julia> a = resize!([6, 5, 4, 3, 2, 1], 8);
julia> length(a)
8
julia> length(a)
8
julia> a[1:6]
6-element Array{Int64,1}:
6
5
4
3
2
1
julia> a[1:6]
6-element Array{Int64,1}:
6
5
4
3
2
1
```
"""
function resize!(a::Vector, nl::Integer)
Expand Down

0 comments on commit bdbcbba

Please sign in to comment.