doc: Fix inverted meaning in E0783.md

This commit is contained in:
maflcko
2025-06-05 12:27:08 +02:00
committed by GitHub
parent 425e142686
commit 79fbc38867

View File

@@ -9,7 +9,7 @@ match 2u8 {
} }
``` ```
Older Rust code using previous editions allowed `...` to stand for exclusive Older Rust code using previous editions allowed `...` to stand for inclusive
ranges which are now signified using `..=`. ranges which are now signified using `..=`.
To make this code compile replace the `...` with `..=`. To make this code compile replace the `...` with `..=`.