From ab23af439d76368550f0dbf18d3eb70c316aee30 Mon Sep 17 00:00:00 2001 From: Frank Steffahn Date: Sun, 22 Aug 2021 16:45:58 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20another=20=E2=80=9Ca=E2=80=9D/=E2=80=9Can?= =?UTF-8?q?=E2=80=9D=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/ide/src/references.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ide/src/references.rs b/crates/ide/src/references.rs index d7a2b454841d..395a29587b65 100644 --- a/crates/ide/src/references.rs +++ b/crates/ide/src/references.rs @@ -1,6 +1,6 @@ //! This module implements a reference search. //! First, the element at the cursor position must be either an `ast::Name` -//! or `ast::NameRef`. If it's a `ast::NameRef`, at the classification step we +//! or `ast::NameRef`. If it's an `ast::NameRef`, at the classification step we //! try to resolve the direct tree parent of this element, otherwise we //! already have a definition and just need to get its HIR together with //! some information that is needed for further steps of searching.