This has cost me quite some time to realize, so i hope the warning
will prevent others from scratching their heads as well.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f5edc8f..0686226 100644
--- a/README.md+++ b/README.md
@@ -102,7 +102,7 @@ The Lua script will get some global variables, to help with the extraction:
`gojq` is a module imported by default, it is the [gojq](https://github.com/itchyny/gojq)) library
-`setGlobal` sets a global variable that will be visible in other lua scripts. eg. in feed title `setGlobal("myvar", 1)` is called and than in every subsequent item title, item link, ..., item image the variable will be visible `print(myvar)`+`setGlobal` sets a global variable that will be visible in other lua scripts. eg. in feed title `setGlobal("myvar", 1)` is called and then in every subsequent item title, item link, ..., item image the variable will be visible and can be used: `print(myvar)`. **Warning**: Please note, that setting a global variable in an item may result in race conditions, as items are processed in parallel.`index` number of the item processed
--
2.34.1