Merge pull request #71 from quarno/patch-1

Wrong function name in comment
This commit is contained in:
black
2019-09-02 04:33:48 +00:00
committed by GitHub

View File

@@ -1911,8 +1911,8 @@ Surprisingly, `sleep` is an external command and not a `bash` built-in.
```sh ```sh
read_sleep() { read_sleep() {
# Usage: sleep 1 # Usage: read_sleep 1
# sleep 0.2 # read_sleep 0.2
read -rt "$1" <> <(:) || : read -rt "$1" <> <(:) || :
} }
``` ```