From e4d273e10f0e30cd66a2d4bc8c629394a694289c Mon Sep 17 00:00:00 2001 From: Elara Date: Sun, 10 Nov 2024 07:32:15 +0000 Subject: [PATCH] Fix parameter name in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e8bb0c..3f0151a 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ with open('test.hcl', 'r') as fl: cfg = hisscl.load(fl, name=fl.name) ``` -Each `load*` function has an optional `vars: dict[str, Any]` parameter, whose elements are used as variables in your config file. For example, if you have `x = y + 1`, `y` must be defined in `globals`. +Each `load*` function has an optional `vars: dict[str, Any]` parameter, whose elements are used as variables in your config file. For example, if you have `x = y + 1`, `y` must be defined in `vars`. For more advanced use-cases, `lexer`, `parser`, `ast`, and `interp` submodules are provided.