From 92ede9a47223bf435f95ec01b470923bef62da1e Mon Sep 17 00:00:00 2001 From: VincentV <110171757+Vincent-van-de-Visch@users.noreply.github.com> Date: Wed, 25 Jun 2025 16:55:25 +0200 Subject: [PATCH] Update 02_variables.md Small typo --- website/docs/chapter-03/02_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/chapter-03/02_variables.md b/website/docs/chapter-03/02_variables.md index 3639b48..4a5afed 100644 --- a/website/docs/chapter-03/02_variables.md +++ b/website/docs/chapter-03/02_variables.md @@ -70,7 +70,7 @@ Robot Framework, implemented in Python, can work with any object stored in varia - **Scalar Variables**: Store values as a single entity and are represented by the dollar-syntax `${variable_name}`. - **List Variables**: Store multiple values in a list structure. They are created using the at-syntax `@{list_variable_name}`. - **Dictionary Variables**: Store key-value pairs in a dictionary structure. They are created using the ampersand-syntax `&{dictionary_variable_name}`. -- **Environment Variables** (read-only): Read access to environments variables of the operating system unsing the percent-syntax `%{ENV_VAR_NAME}`. +- **Environment Variables** (read-only): Read access to environments variables of the operating system using the percent-syntax `%{ENV_VAR_NAME}`. These different syntactical handling methods allow the users to also create and handle lists and dictionaries natively in Robot Framework. However, these prefixes just define the access type to the variable, and the actual data stored in the variable can be of any type, including strings, numbers, lists, dictionaries, or even objects.