From 85cbad15d015a5b18d5c3840ded4db2208aa30f8 Mon Sep 17 00:00:00 2001 From: Gaurav Dhingra Date: Tue, 31 Mar 2026 17:32:28 +0530 Subject: [PATCH] fix: update format_like doc and GIF --- crates/ide-completion/src/completions/postfix/format_like.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ide-completion/src/completions/postfix/format_like.rs b/crates/ide-completion/src/completions/postfix/format_like.rs index 7faa1139595f..ce41295999df 100644 --- a/crates/ide-completion/src/completions/postfix/format_like.rs +++ b/crates/ide-completion/src/completions/postfix/format_like.rs @@ -1,6 +1,6 @@ // Feature: Format String Completion // -// `"Result {result} is {2 + 2}"` is expanded to the `"Result {} is {}", result, 2 + 2`. +// `"Result {result} is {2 + 2}"` is expanded to the `"Result {result} is {}", 2 + 2`. // // The following postfix snippets are available: //