Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update functions.md
Clarified sentence on line 94.
  • Loading branch information
rtmcg authored Dec 31, 2023
commit ca20a19c45c732236fa392e2ae9a41d0360d9a8e
2 changes: 1 addition & 1 deletion content/learn/03.programming/02.functions/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.