Fix a couple of typos (#1720)

This commit is contained in:
Dawit 2021-10-20 22:30:57 -05:00 committed by GitHub
parent 8041e914f3
commit f6faef05d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -346,8 +346,8 @@ fi
| Expression | Description |
| --- | --- |
| `$#` | Number of arguments |
| `$*` | All postional arguments (as a single word) |
| `$@` | All postitional arguments (as separate strings) |
| `$*` | All positional arguments (as a single word) |
| `$@` | All positional arguments (as separate strings) |
| `$1` | First argument |
| `$_` | Last argument of the previous command |