Today I edited a function and I saw a wiard behavior and wanted to ask if it is intended.
When I:
- Open a function write code with “ContainsStr”. Example:
Query(Lambda("x", Add(Var("x"), ContainsStr("x"))))
- Save then function.
- Exit the function view
- Reenter the function view
- The function body now contains
Query(Lambda("x", Add(Var("x"), Containsstr("x", "a"))))
.
It modifies the ContainsStr from Containsstr
to Containsstr
.
I know that formatting will be applied to the code entered but I think that this is unintended because when I try to save with Containsstr
it says that “Containsstr is not defined”.
Thanks for reading have a nice day :D.