From 1da21b797a12a0fecdf98f43bcfd0bfe70e0bb3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Sat, 24 Jul 2021 11:20:40 +0300 Subject: [PATCH] Fix typo --- crates/ide_completion/src/completions/lifetime.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ide_completion/src/completions/lifetime.rs b/crates/ide_completion/src/completions/lifetime.rs index 7b98814577fd..bc9f3913fb11 100644 --- a/crates/ide_completion/src/completions/lifetime.rs +++ b/crates/ide_completion/src/completions/lifetime.rs @@ -1,8 +1,8 @@ //! Completes lifetimes and labels. //! //! These completions work a bit differently in that they are only shown when what the user types -//! has a `'` preceding it, as our fake syntax tree is invalid otherwise(due to us not inserting a -//! lifetime but an ident for obvious reasons). +//! has a `'` preceding it, as our fake syntax tree is invalid otherwise (due to us not inserting +//! a lifetime but an ident for obvious reasons). //! Due to this all the tests for lifetimes and labels live in this module for the time being as //! there is no value in lifting these out into the outline module test since they will either not //! show up for normal completions, or they won't show completions other than lifetimes depending