From 452854b7f46777f77f5d83fbb478ffbd8510da0d Mon Sep 17 00:00:00 2001 From: PhistucK Date: Tue, 19 Aug 2025 14:45:13 +0100 Subject: [PATCH] doc: update environment_variables The example missed a character - my variable instead of my variable a. Also, treaded was changed to treated. --- doc/api/environment_variables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/environment_variables.md b/doc/api/environment_variables.md index 4878eeaa9e6dcd..747d8313c4b7fa 100644 --- a/doc/api/environment_variables.md +++ b/doc/api/environment_variables.md @@ -96,10 +96,10 @@ For example: MY_VAR_B = ' my variable b ' ``` -will be treaded identically to: +will be treated identically to: ```text -MY_VAR_A = my variable +MY_VAR_A = my variable a MY_VAR_B = ' my variable b ' ```