Heyward Fann
2020-07-02 11:06:00 +08:00
parent a33eefa3b2
commit f1986be8fd
+4 -4
View File
@@ -63,11 +63,11 @@
// 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 @@
// use super::*;
//
// #[test]
// fn test_fn() {}
// fn test_name() {}
// }
// ```