Skip to content

Added missing comments to statement(s) section in curlyBraces.adoc. #541

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Language/Structure/Further Syntax/curlyBraces.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The main uses of curly braces are listed in the examples below.
[source,arduino]
----
void myfunction(datatype argument){
statements(s)
// any statements(s)
}
----
[%hardbreaks]
Expand All @@ -59,17 +59,17 @@ void myfunction(datatype argument){
----
while (boolean expression)
{
statement(s)
// any statements(s)
}

do
{
statement(s)
// any statements(s)
} while (boolean expression);

for (initialisation; termination condition; incrementing expr)
{
statement(s)
// any statements(s)
}
----
[%hardbreaks]
Expand All @@ -84,16 +84,16 @@ for (initialisation; termination condition; incrementing expr)
----
if (boolean expression)
{
statement(s)
// any statements(s)
}

else if (boolean expression)
{
statement(s)
// any statements(s)
}
else
{
statement(s)
// any statements(s)
}
----
[%hardbreaks]
Expand All @@ -112,4 +112,4 @@ else
[role="language"]

--
// SEE ALSO SECTION ENDS
// SEE ALSO SECTION ENDS