plugins/README.md | 2 +-
plugins/dups | 2 +-
diff --git a/plugins/README.md b/plugins/README.md
index 772f28e14cc3257fa6659bca00d8467a05646418..a3d3700dee66bfe7e31c67c0c05a1eab17ac60af 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -20,7 +20,7 @@ | [autojump](autojump) | Navigate to dir/path | sh | [jump](https://github.com/gsamokovarov/jump)/autojump/zoxide |
| [bookmarks](bookmarks) | Use named bookmarks managed with symlinks | sh | fzf |
| [boom](boom) | Play random music from dir | sh | [moc](http://moc.daper.net/) |
| [bulknew](bulknew) | Create multiple files/dirs at once | bash | sed, xargs, mktemp |
-| [dups](dups) | List non-empty duplicate files in current dir | sh | find, md5sum,
sort uniq xargs |
+| [dups](dups) | List non-empty duplicate files in current dir | bash | find, md5sum,
sort uniq xargs |
| [chksum](chksum) | Create and verify checksums | sh | md5sum,
sha256sum |
| [diffs](diffs) | Diff for selection (limited to 2 for directories) | sh | vimdiff, mktemp |
| [dragdrop](dragdrop) | Drag/drop files from/into nnn | sh | [dragon](https://github.com/mwh/dragon) |
diff --git a/plugins/dups b/plugins/dups
index 1cba8a8a704a2c200ceb872aa3f0c4a9af04d5e4..02954e8372a35b77fb0558255fdc9dea716ead6d 100755
--- a/plugins/dups
+++ b/plugins/dups
@@ -24,7 +24,7 @@ printf "\
## This is an overview of all duplicate files found.
## Comment out the files you wish to remove. You will be given an option to cancel.
## Lines with double comments (##) are ignored.
-## If you choose to remove, you will be given a choice between removing files with force or interactively.\n
+## You will have the option to remove the files with force or interactively.\n
" > "$tmpfile"
# shellcheck disable=SC2016