fix: replace languages preceded by space

This commit is contained in:
Randell Dawson
2019-06-21 13:09:17 -07:00
committed by Kristofer Koishigawa
parent 2b553d31b6
commit 8ce1b374e3
7 changed files with 23 additions and 24 deletions

View File

@@ -57,7 +57,7 @@ When you execute this code in a c++ program numbers from 1 to 1000 will be print
` for(int i=0;i<=1000;i++) `
* If there is only one statement inside the loop then the curly bracket is optional but its better to write loop code
within brackets so that you don't get confused.
``` c++
```cpp
for(int i=0;i<=1000;i++)
{
}