From c1cad77ac6c2cb231c35ad0bef77bb4c3d2cb3cc 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 --- src/tools/rust-analyzer/crates/hir-ty/src/generics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d174da9997a6..2a997e0a9f1c 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;