From ca2b596c9012d8d7117472f3e9ca1ae3908b3345 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 14 Sep 2021 03:02:22 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20readme=20typo:=20FOO=20=E2=86=92=20WORLD?= =?UTF-8?q?=20(#964)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 97512bd..9f82406 100644 --- a/README.adoc +++ b/README.adoc @@ -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` ```