From facc00d68e19110356823ff4a33a77703f1610fc Mon Sep 17 00:00:00 2001 From: Chelitis <86283476+zumosik@users.noreply.github.com> Date: Tue, 30 Jul 2024 17:48:29 +0300 Subject: [PATCH] Fix typo getAST should be genAST --- 08_If_Statements/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_If_Statements/Readme.md b/08_If_Statements/Readme.md index 12d2fe98..b6966e92 100644 --- a/08_If_Statements/Readme.md +++ b/08_If_Statements/Readme.md @@ -383,7 +383,7 @@ operators, we need to know if we are doing the compare as part of an IF statement (jump on the opposite comparison) or a normal expression (set register to 1 or 0 on the normal comparison). -To this end, I've modified `getAST()` so that we can pass in the +To this end, I've modified `genAST()` so that we can pass in the parent AST nodes operation: ```c