Fix typo

infokiller
2021-05-25 14:36:12 +03:00
parent 37dc10f622
commit e6a628d92f

@@ -13,7 +13,7 @@ function checksum() {
```sh
function checksum() {
type md5 && md5sum() { md5sum "$@"; }
type md5 && md5sum() { md5 "$@"; }
md5sum "$@" # Now this would call `md5` when applicable
}
```