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
commit 11bfa62641
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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