diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index 69ea754b3dc8..9ebb8ebb7cfe 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs @@ -63,11 +63,11 @@ pub use crate::completion::{ // There also snippet completions: // // .Expressions -// - `pd` -> `println!("{:?}")` -// - `ppd` -> `println!("{:#?}")` +// - `pd` -> `eprintln!(" = {:?}", );")` +// - `ppd` -> `eprintln!(" = {:#?}", );` // // .Items -// - `tfn` -> `#[test] fn f(){}` +// - `tfn` -> `#[test] fn feature(){}` // - `tmod` -> // ```rust // #[cfg(test)] @@ -75,7 +75,7 @@ pub use crate::completion::{ // use super::*; // // #[test] -// fn test_fn() {} +// fn test_name() {} // } // ```