diff --git a/src/patterns.md b/src/patterns.md index 8cd8af042..31ce30b80 100644 --- a/src/patterns.md +++ b/src/patterns.md @@ -443,8 +443,6 @@ A half-open range pattern in the style `a..` cannot be used to match within the A pattern `a..=b` must always have a ≤ b. It is an error to have a range pattern `10..=0`, for example. -The `...` syntax is kept for backwards compatibility. - Range patterns only work on scalar types. The accepted types are: * Integer types (u8, i8, u16, i16, usize, isize, etc.). @@ -535,6 +533,8 @@ minimum to maximum value. The range of values for a `char` type are precisely th ranges containing all Unicode Scalar Values: `'\u{0000}'..='\u{D7FF}'` and `'\u{E000}'..='\u{10FFFF}'`. +> **Edition Differences**: Before the 2021 edition, closed range patterns may also be written using `...` as an alternative to `..=`, with the same meaning. + ## Reference patterns > **Syntax**\