Add missing “of”

Michael Siegel
2019-09-22 14:14:37 +00:00
parent 77c3de015b
commit 9db5dcc6a3

@@ -45,7 +45,7 @@ foo=$(mycmd)
### Rationale ### Rationale
The exit status of the command is overridden by the exit status of the creation the local variable. For example: The exit status of the command is overridden by the exit status of the creation of the local variable. For example:
```bash ```bash
$ f() { local foo=$(false) || echo foo; }; f $ f() { local foo=$(false) || echo foo; }; f