doc: Update bash.md for a translation error (#92)

关于空间 -> 关于空格
This commit is contained in:
xing133 2022-11-16 11:07:01 +08:00 committed by GitHub
parent 5ee649ae9b
commit 0ad14d89a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ echo $NAME # => John (变量)
echo "$NAME" # => John (变量)
echo '$NAME' # => $NAME (确切的字符串)
echo "${NAME}!" # => John! (变量)
NAME = "John" # => Error (关于空)
NAME = "John" # => Error (关于空)
```
### 注释