From ca20a19c45c732236fa392e2ae9a41d0360d9a8e Mon Sep 17 00:00:00 2001 From: rtmcg <47357950+rtmcg@users.noreply.github.com> Date: Sat, 30 Dec 2023 20:28:48 -0500 Subject: [PATCH] Update functions.md Clarified sentence on line 94. --- content/learn/03.programming/02.functions/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/03.programming/02.functions/functions.md b/content/learn/03.programming/02.functions/functions.md index 0c71a99114..f28cade63e 100644 --- a/content/learn/03.programming/02.functions/functions.md +++ b/content/learn/03.programming/02.functions/functions.md @@ -91,4 +91,4 @@ int sens; sens = ReadSens_and_Condition(); ``` -As you can see, even if a function does not have parameters and no returns is expected "(" and ")" brackets plus ";" must be given. +As you can see, even if a function is not passed any parameters, the "()" brackets are required to call it.