Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/typing.rs')
-rw-r--r--crates/ide/src/typing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/typing.rs b/crates/ide/src/typing.rs
index b06079d8ac..79919dac5b 100644
--- a/crates/ide/src/typing.rs
+++ b/crates/ide/src/typing.rs
@@ -365,7 +365,7 @@ fn on_left_angle_typed(
) -> Option<TextEdit> {
let file_text = reparsed.syntax().text();
- // Find the next non-whitespace char in the line, check if its a `>`
+ // Find the next non-whitespace char in the line, check if it's a `>`
let mut next_offset = offset;
while file_text.char_at(next_offset) == Some(' ') {
next_offset += TextSize::of(' ')