From f492338e67af23023f938e9d368fed4f36f8749f Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Tue, 19 Dec 2023 09:14:41 +0100 Subject: [PATCH] fix typo --- slides/cours_11.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/cours_11.md b/slides/cours_11.md index a59430a..7e37204 100644 --- a/slides/cours_11.md +++ b/slides/cours_11.md @@ -88,7 +88,7 @@ Caractère lu Pile opérandes . . . ```C -bool evaluate(char *postfix, double *val) { // init stack +double evaluate(char *postfix) { // init stack for (size_t i = 0; i < strlen(postfix); ++i) { if (is_operand(postfix[i])) { stack_push(&s, postfix[i]); -- GitLab