From cdeb1b2c78e07d326871bf5ee2bcebdf01806750 Mon Sep 17 00:00:00 2001 From: Steven Joruk Date: Tue, 1 Mar 2022 13:22:21 +0000 Subject: [PATCH] chore: fill_match_arms was renamed - update its usage in a comment --- crates/ide_assists/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ide_assists/src/lib.rs b/crates/ide_assists/src/lib.rs index 067f4d8e14d..64d93083f89 100644 --- a/crates/ide_assists/src/lib.rs +++ b/crates/ide_assists/src/lib.rs @@ -42,7 +42,7 @@ //! useful and (worse) less predictable. The user should have a clear //! intuition when each particular assist is available. //! * Make small assists, which compose. Example: rather than auto-importing -//! enums in `fill_match_arms`, we use fully-qualified names. There's a +//! enums in `add_missing_match_arms`, we use fully-qualified names. There's a //! separate assist to shorten a fully-qualified name. //! * Distinguish between assists and fixits for diagnostics. Internally, fixits //! and assists are equivalent. They have the same "show a list + invoke a