aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeyward Fann <[email protected]>2020-07-02 04:06:00 +0100
committerHeyward Fann <[email protected]>2020-07-02 04:06:00 +0100
commitf1986be8fdcdc01c580b2d6e43574ae980d38e4b (patch)
tree00afe8055c14dee3b7aec22b13636e40de0e4cd6
parenta33eefa3b26000b3018e6bb873f18dbe15ab4ab7 (diff)
fix: correct pd/ppd/tfn/tmod completion doc
https://github.com/rust-analyzer/rust-analyzer/blob/a33eefa3b26000b3018e6bb873f18dbe15ab4ab7/crates/ra_ide/src/completion/complete_snippet.rs#L23
-rw-r--r--crates/ra_ide/src/completion.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs
index 69ea754b3..9ebb8ebb7 100644
--- a/crates/ra_ide/src/completion.rs
+++ b/crates/ra_ide/src/completion.rs
@@ -63,11 +63,11 @@ pub use crate::completion::{
63// There also snippet completions: 63// There also snippet completions:
64// 64//
65// .Expressions 65// .Expressions
66// - `pd` -> `println!("{:?}")` 66// - `pd` -> `eprintln!(" = {:?}", );")`
67// - `ppd` -> `println!("{:#?}")` 67// - `ppd` -> `eprintln!(" = {:#?}", );`
68// 68//
69// .Items 69// .Items
70// - `tfn` -> `#[test] fn f(){}` 70// - `tfn` -> `#[test] fn feature(){}`
71// - `tmod` -> 71// - `tmod` ->
72// ```rust 72// ```rust
73// #[cfg(test)] 73// #[cfg(test)]
@@ -75,7 +75,7 @@ pub use crate::completion::{
75// use super::*; 75// use super::*;
76// 76//
77// #[test] 77// #[test]
78// fn test_fn() {} 78// fn test_name() {}
79// } 79// }
80// ``` 80// ```
81 81