Skip to content

Commit abc941d

Browse files
committed
Fix incorrect list nesting in format_like feature description
1 parent 98395f2 commit abc941d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

crates/ide_completion/src/completions/postfix/format_like.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
//
55
// The following postfix snippets are available:
66
//
7-
// - `format` -> `format!(...)`
8-
// - `panic` -> `panic!(...)`
9-
// - `println` -> `println!(...)`
10-
// - `log`:
11-
// + `logd` -> `log::debug!(...)`
12-
// + `logt` -> `log::trace!(...)`
13-
// + `logi` -> `log::info!(...)`
14-
// + `logw` -> `log::warn!(...)`
15-
// + `loge` -> `log::error!(...)`
7+
// * `format` -> `format!(...)`
8+
// * `panic` -> `panic!(...)`
9+
// * `println` -> `println!(...)`
10+
// * `log`:
11+
// ** `logd` -> `log::debug!(...)`
12+
// ** `logt` -> `log::trace!(...)`
13+
// ** `logi` -> `log::info!(...)`
14+
// ** `logw` -> `log::warn!(...)`
15+
// ** `loge` -> `log::error!(...)`
1616
//
1717
// image::https://user-images.githubusercontent.com/48062697/113020656-b560f500-917a-11eb-87de-02991f61beb8.gif[]
1818

0 commit comments

Comments
 (0)