Skip to content

Commit f1986be

Browse files

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/ra_ide/src/completion.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ pub use crate::completion::{
6363
// There also snippet completions:
6464
//
6565
// .Expressions
66-
// - `pd` -> `println!("{:?}")`
67-
// - `ppd` -> `println!("{:#?}")`
66+
// - `pd` -> `eprintln!(" = {:?}", );")`
67+
// - `ppd` -> `eprintln!(" = {:#?}", );`
6868
//
6969
// .Items
70-
// - `tfn` -> `#[test] fn f(){}`
70+
// - `tfn` -> `#[test] fn feature(){}`
7171
// - `tmod` ->
7272
// ```rust
7373
// #[cfg(test)]
7474
// mod tests {
7575
// use super::*;
7676
//
7777
// #[test]
78-
// fn test_fn() {}
78+
// fn test_name() {}
7979
// }
8080
// ```
8181

0 commit comments

Comments
 (0)