Revert one link fix, already covered by #9

This commit is contained in:
Tanguy 2022-05-19 12:00:30 +02:00
parent 29c1bc399f
commit 45987159a7
No known key found for this signature in database
GPG Key ID: 7DD8EC6B6CE6C45E

View File

@ -15,6 +15,6 @@ Don't cast pointers to `int`.
* When comparing lengths to unsigned integers, convert the length to unsigned
* Pointers may overflow `int` when used for arithmetic
* An alternative to `int` for non-negative integers such as lengths is `Natural`
* `Natural` is a `range` type and therefore [unreliable](language.range.md) - it generally avoids the worst problems owing to its simplicity but may require additional casts to work around bugs
* `Natural` is a `range` type and therefore [unreliable](#range) - it generally avoids the worst problems owing to its simplicity but may require additional casts to work around bugs
* Better models length, but is not used by `len`