From 317fc650d5c1267a8c192041efe6b591d900808f Mon Sep 17 00:00:00 2001 From: Timo Freiberg Date: Thu, 16 Apr 2020 23:53:25 +0200 Subject: Make add_function generate functions in other modules via qualified path --- docs/user/assists.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/user') diff --git a/docs/user/assists.md b/docs/user/assists.md index 6483ba4f3..6c6943622 100644 --- a/docs/user/assists.md +++ b/docs/user/assists.md @@ -65,7 +65,7 @@ Adds a stub function with a signature matching the function under the cursor. struct Baz; fn baz() -> Baz { Baz } fn foo() { - bar┃("", baz()); + bar┃("", baz()); } @@ -73,7 +73,7 @@ fn foo() { struct Baz; fn baz() -> Baz { Baz } fn foo() { - bar("", baz()); + bar("", baz()); } fn bar(arg: &str, baz: Baz) { -- cgit v1.2.3