Skip to content
Snippets Groups Projects
Commit bc8b7727 authored by Hadrien Grasland's avatar Hadrien Grasland
Browse files

Fix range bound typo

parent caa26201
No related branches found
No related tags found
No related merge requests found
Pipeline #335698 passed
...@@ -22,7 +22,7 @@ for i in 0..10 { ...@@ -22,7 +22,7 @@ for i in 0..10 {
``` ```
Following an old tradition, ranges based on the `..` syntax are left inclusive Following an old tradition, ranges based on the `..` syntax are left inclusive
and right inclusive, i.e. the left element is included, but the right element is and right exclusive, i.e. the left element is included, but the right element is
not included. The reasons why this is a good default have been [explained at not included. The reasons why this is a good default have been [explained at
length length
elsewhere](https://www.cs.utexas.edu/~EWD/transcriptions/EWD08xx/EWD831.html), elsewhere](https://www.cs.utexas.edu/~EWD/transcriptions/EWD08xx/EWD831.html),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment