diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2025-04-22 11:26:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-22 11:26:56 +0000 |
| commit | e51e384fb0b6309d4fdd0b2ff7c951bdd99927dd (patch) | |
| tree | 2214ea24f3f52f3648eb767160136337e35d5b75 | |
| parent | 7735f186205760df88855e56acd82953e74ce959 (diff) | |
| parent | c1cad77ac6c2cb231c35ad0bef77bb4c3d2cb3cc (diff) | |
| download | rust-e51e384fb0b6309d4fdd0b2ff7c951bdd99927dd.tar.gz rust-e51e384fb0b6309d4fdd0b2ff7c951bdd99927dd.zip | |
Merge pull request #19662 from Veykril/push-lqqvmnonlwrx
minor: Fix outdated comment in hir-ty/generics.rs
| -rw-r--r-- | src/tools/rust-analyzer/crates/hir-ty/src/generics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-ty/src/generics.rs b/src/tools/rust-analyzer/crates/hir-ty/src/generics.rs index 42fe129f91f..8379636d5c6 100644 --- a/src/tools/rust-analyzer/crates/hir-ty/src/generics.rs +++ b/src/tools/rust-analyzer/crates/hir-ty/src/generics.rs @@ -1,10 +1,10 @@ //! Utilities for working with generics. //! //! The layout for generics as expected by chalk are as follows: +//! - Parent parameters //! - Optional Self parameter //! - Lifetime parameters //! - Type or Const parameters -//! - Parent parameters //! //! where parent follows the same scheme. use std::ops; |
