Skip to content

Commit

Permalink
Remove incorrect type info from range documentation (#34475)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalojasv181 authored and KristofferC committed Apr 11, 2020
1 parent 53adb77 commit 926da67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/range.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ optionally with a given step (defaults to 1, a [`UnitRange`](@ref)).
One of `length` or `stop` is required. If `length`, `stop`, and `step` are all specified, they must agree.
If `length` and `stop` are provided and `step` is not, the step size will be computed
automatically such that there are `length` linearly spaced elements in the range (a [`LinRange`](@ref)).
automatically such that there are `length` linearly spaced elements in the range.
If `step` and `stop` are provided and `length` is not, the overall range length will be computed
automatically such that the elements are `step` spaced (a [`StepRange`](@ref)).
automatically such that the elements are `step` spaced.
`stop` may be specified as either a positional or keyword argument.
Expand Down

0 comments on commit 926da67

Please sign in to comment.