Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More doctests and cleanup for intfuncs #22515

Merged
merged 10 commits into from
Jun 27, 2017
Prev Previous commit
Next Next commit
[ci skip] Fix leading space
  • Loading branch information
kshyatt committed Jun 26, 2017
commit bdbcbba52cdc176d43c4ff6e37b7c476c1e476d8
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