Skip to content

Commit eebd248

Browse files
committed
Fix errors
1 parent 34e302e commit eebd248

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/create_dir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ declare_clippy_lint! {
1515
/// **Example:**
1616
///
1717
/// ```rust
18-
/// std::fs::create_dir("foo")
18+
/// std::fs::create_dir("foo");
1919
/// ```
2020
/// Use instead:
2121
/// ```rust
22-
/// std::fs::create_dir_all("foo")
22+
/// std::fs::create_dir_all("foo");
2323
/// ```
2424
pub CREATE_DIR,
2525
restriction,

0 commit comments

Comments
 (0)