diff options
| author | Rich Kadel <richkadel@google.com> | 2020-11-25 13:30:33 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-25 13:30:33 -0800 |
| commit | fdbc121620704ab50bd427ff1a2bb3282ffac745 (patch) | |
| tree | ad7bfa76d28e6eedda45921c0347c01fc7f7a0e2 | |
| parent | d334f589c4d98dbc9736af033f68bd2c35cd8a79 (diff) | |
| download | rust-fdbc121620704ab50bd427ff1a2bb3282ffac745.tar.gz rust-fdbc121620704ab50bd427ff1a2bb3282ffac745.zip | |
fix URLs in doc comment
The angle brackets were confusing my IDE and I thought they were unnecessary. I was wrong.
| -rw-r--r-- | compiler/rustc_middle/src/mir/coverage.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_middle/src/mir/coverage.rs b/compiler/rustc_middle/src/mir/coverage.rs index 72050013854..8a6bf9dff7b 100644 --- a/compiler/rustc_middle/src/mir/coverage.rs +++ b/compiler/rustc_middle/src/mir/coverage.rs @@ -21,9 +21,9 @@ rustc_index::newtype_index! { impl ExpressionOperandId { /// An expression operand for a "zero counter", as described in the following references: /// - /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter - /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#tag - /// * https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter-expressions + /// * <https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter> + /// * <https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#tag> + /// * <https://github.com/rust-lang/llvm-project/blob/rustc/11.0-2020-10-12/llvm/docs/CoverageMappingFormat.rst#counter-expressions> /// /// This operand can be used to count two or more separate code regions with a single counter, /// if they run sequentially with no branches, by injecting the `Counter` in a `BasicBlock` for |
