Skip to content
Snippets Groups Projects
Commit 9fc14e1f authored by Andinet enquobahrie's avatar Andinet enquobahrie
Browse files

DOC: Fix missing white space

parent 2bee59ed
No related branches found
No related tags found
No related merge requests found
......@@ -71,15 +71,15 @@ git pull origin master
2. Braces must be used to delimit the scope of an if, for, while, switch or other control structure.
3. Curly braces should go on a seperate line.
```sh
for(unsigned int i=0; i < 3; i++)
for (unsigned int i=0; i < 3; i++)
{
...
}
if( condition )
if ( condition )
{
...
}
else if( other condition)
else if ( other condition)
{
...
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment