Wrong function name in comment

This commit is contained in:
Manuel Quarneti 2019-09-02 00:16:38 +02:00 committed by GitHub
parent a8824db932
commit 6e8d9a1f35
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" <> <(:) || :
}
```