Fix readme typo: FOO → WORLD (#964)

This commit is contained in:
Casey Rodarmor 2021-09-14 03:02:22 +03:00 committed by GitHub
parent 2815aa6167
commit ca2b596c90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -981,7 +981,7 @@ test $RUST_BACKTRACE="1":
Exported variables and parameters are not exported to backticks in the same scope.
```make
export FOO := "world"
export WORLD := "world"
# This backtick will fail with "WORLD: unbound variable"
BAR := `echo hello $WORLD`
```