From ff2b000e410f13d1d3b02610d5fc88e50f64f86e Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 10 Apr 2025 11:28:38 -0700 Subject: [PATCH] Fix std::ops links in range-expr Somehow I missed these in https://github.com/rust-lang/reference/pull/1578. They should be using the automatic std-linking support so that they can be relative when necessary. --- src/expressions/range-expr.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/expressions/range-expr.md b/src/expressions/range-expr.md index f05945932..fcfaacb9c 100644 --- a/src/expressions/range-expr.md +++ b/src/expressions/range-expr.md @@ -72,10 +72,3 @@ for i in 1..11 { ``` [_Expression_]: ../expressions.md - -[std::ops::Range]: https://doc.rust-lang.org/std/ops/struct.Range.html -[std::ops::RangeFrom]: https://doc.rust-lang.org/std/ops/struct.RangeFrom.html -[std::ops::RangeTo]: https://doc.rust-lang.org/std/ops/struct.RangeTo.html -[std::ops::RangeFull]: https://doc.rust-lang.org/std/ops/struct.RangeFull.html -[std::ops::RangeInclusive]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html -[std::ops::RangeToInclusive]: https://doc.rust-lang.org/std/ops/struct.RangeToInclusive.html