From a6b24f47c1f439ed8bd6bd74d9190fbff2aa50bc Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Tue, 22 Apr 2025 13:15:56 +0200 Subject: [PATCH] minor: Fix outdated comment in hir-ty/generics.rs --- crates/hir-ty/src/generics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/hir-ty/src/generics.rs b/crates/hir-ty/src/generics.rs index d174da9997..2a997e0a9f 100644 --- a/crates/hir-ty/src/generics.rs +++ b/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;