From f6faef05d87831dcd5218dc15387f52f914eb27a Mon Sep 17 00:00:00 2001 From: Dawit <27751688+oneminch@users.noreply.github.com> Date: Wed, 20 Oct 2021 22:30:57 -0500 Subject: [PATCH] Fix a couple of typos (#1720) --- bash.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash.md b/bash.md index 1943cb130..a7174eea5 100644 --- a/bash.md +++ b/bash.md @@ -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 |