Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[
path_buf_push_overwrite
]: mark suggestion as MaybeIncorrect
Proposing to replace ```rust let mut x = PathBuf::from("/foo"); x.push("/bar"); ``` by ```rust let mut x = PathBuf::from("/foo"); x.push("bar"); ``` changes the content of `x` (`/bar` ⇒ `/foo/bar`).
- Loading branch information