From 65898ed0fb4648816fb55d3a2743061efc42f9b1 Mon Sep 17 00:00:00 2001 From: Jan Weidner Date: Fri, 8 Jan 2021 13:04:15 +0100 Subject: [PATCH] fix --- base/range.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/range.jl b/base/range.jl index e087d056cd45b..aec23e852589b 100644 --- a/base/range.jl +++ b/base/range.jl @@ -56,7 +56,7 @@ Mathematically a range is uniquely determined by any three of `start`, `step`, ` Valid invocations of range are: * Call `range` with any three of `start`, `step`, `stop`, `length`. * Call `range` with two of `start`, `stop`, `length`. In this case `step` will be assumed -to be one. If all arguments are Integers, a [`UnitRange`](@ref) will be returned. +to be one. If both arguments are Integers, a [`UnitRange`](@ref) will be returned. # Examples ```jldoctest