Skip to content

Commit

Permalink
Fix documentation link
Browse files Browse the repository at this point in the history
  • Loading branch information
pkolaczk committed Oct 23, 2021
1 parent 2124c4b commit 90a83d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fclones
`fclones` is a command line utility that identifies groups of identical files and gets rid
of the file copies you no longer need. It comes with plenty of configuration options for controlling
the search scope and offers many ways of removing duplicates. For maximum flexibility,
it integrates well with other Unix programs like `find` and it speaks JSON, so you can have a lot
it integrates well with other Unix utilities like `find` and it speaks JSON, so you have a lot
of control over the search and cleanup process.

`fclones` treats your data seriously. You can inspect and modify the list of duplicate files before removing them.
Expand Down
2 changes: 1 addition & 1 deletion src/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Path {
result
}

/// If `path` is relative, works the same as [`join`].
/// If `path` is relative, works the same as [`join`](Path::join).
/// If `path` is absolute, ignores `self` and returns `path`.
pub fn resolve<P: AsRef<Path>>(self: &Arc<Path>, path: P) -> Path {
let path = path.as_ref();
Expand Down

0 comments on commit 90a83d3

Please sign in to comment.