diff options
| author | Turtel216 <papadimitrios216@gmail.com> | 2025-03-09 16:29:07 +0200 |
|---|---|---|
| committer | Turtel216 <papadimitrios216@gmail.com> | 2025-03-09 16:29:07 +0200 |
| commit | 184feee826bb534a568bcea2cf35c93fa1a40549 (patch) | |
| tree | b070f263e7976c63f827a0b1e3dd61bcb18cb497 | |
| parent | 8dd65e4098faf3fc7d97f297577b033d3c24d66b (diff) | |
| download | rust-184feee826bb534a568bcea2cf35c93fa1a40549.tar.gz rust-184feee826bb534a568bcea2cf35c93fa1a40549.zip | |
Fix key function description
| -rw-r--r-- | lintcheck/src/json.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lintcheck/src/json.rs b/lintcheck/src/json.rs index 58830f8a8b3..8ea0a41ed36 100644 --- a/lintcheck/src/json.rs +++ b/lintcheck/src/json.rs @@ -29,7 +29,7 @@ struct LintJson { } impl LintJson { - /// Returns a tuple of name and file_line for sorting and comparison. + /// Returns a tuple of name and `file_line` for sorting and comparison. fn key(&self) -> impl Ord + '_ { (self.name.as_str(), self.file_line.as_str()) } |
