From d4f71d8f86ec00c736b121b22284298ecaf9a6e5 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Tue, 30 Nov 2021 14:22:15 -0700 Subject: [PATCH] Update src/librustdoc/clean/types.rs Co-authored-by: Guillaume Gomez --- src/librustdoc/clean/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustdoc/clean/types.rs b/src/librustdoc/clean/types.rs index a6552bd010b96..11dd140504ae3 100644 --- a/src/librustdoc/clean/types.rs +++ b/src/librustdoc/clean/types.rs @@ -1478,7 +1478,7 @@ impl Type { } /// Check if two types are "potentially the same". - /// This is different from Eq, because it knows that things like + /// This is different from `Eq`, because it knows that things like /// `Placeholder` are possible matches for everything. crate fn is_same(&self, other: &Self, cache: &Cache) -> bool { match (self, other) {