rename unused variable

This commit is contained in:
Simon Vandel Sillesen 2019-01-06 07:56:02 +01:00
parent f99398d9d5
commit cfaaf33069

View file

@ -139,7 +139,7 @@ pub fn on_eq_typed(file: &SourceFileNode, offset: TextUnit) -> Option<LocalEdit>
pub fn on_dot_typed(file: &SourceFileNode, offset: TextUnit) -> Option<LocalEdit> {
let before_dot_offset = offset - TextUnit::of_char('.');
let whitespace = find_leaf_at_offset(file.syntax(), before_dot_offset)
let _whitespace = find_leaf_at_offset(file.syntax(), before_dot_offset)
.left_biased()
.and_then(ast::Whitespace::cast)?;