From 5d59ed5525b2e084d20d807d68e28623763be24e Mon Sep 17 00:00:00 2001 From: obarun <eric@obarun.org> Date: Mon, 11 Dec 2023 17:44:52 +1100 Subject: [PATCH] typo fix --- doc/execl-envfile.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/execl-envfile.md b/doc/execl-envfile.md index c8479acf..f7fbeec1 100644 --- a/doc/execl-envfile.md +++ b/doc/execl-envfile.md @@ -67,9 +67,7 @@ socket_name=!sname In this case the *key* will be removed from the environment after the substitution. -Variable name **must be** between `${}` to get it value. For instance, `$var` is not replaced by its value. - -Reusing the same variable or variable from the actual environment is allowed. In such case, variable name **must be** between `${}` to get it value. For instance, `$var` is not replaced by its value. For intance, an environment file can be declared +Reusing the same variable or variable from the actual environment is allowed. In such case, variable name **must be** between `${}` to get it value. For intance, an environment file can be declared ``` PATH=/usr/local/bin:${PATH} @@ -78,7 +76,7 @@ socket_dir=dname socket=${socket_dir}/${socket_name} ``` -The order of key-value pair declaration **doesn't matter**: +The order of `key=value` pair declaration **do not** matter ``` PATH=/usr/local/bin:${PATH} -- GitLab