Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hkmatsumoto committed Aug 28, 2020
1 parent 34e302e commit eebd248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clippy_lints/src/create_dir.rs
Expand Up @@ -15,11 +15,11 @@ declare_clippy_lint! {
/// **Example:**
///
/// ```rust
/// std::fs::create_dir("foo")
/// std::fs::create_dir("foo");
/// ```
/// Use instead:
/// ```rust
/// std::fs::create_dir_all("foo")
/// std::fs::create_dir_all("foo");
/// ```
pub CREATE_DIR,
restriction,
Expand Down

0 comments on commit eebd248

Please sign in to comment.