Update the webpage (#4813)

JerryScript-DCO-1.0-Signed-off-by: Zsolt Borbély zsborbely.u-szeged@partner.samsung.com
This commit is contained in:
Zsolt Borbély
2021-11-02 19:13:12 +01:00
committed by GitHub
parent acdecfc62a
commit d0671c4ff1
11 changed files with 1943 additions and 500 deletions
+3 -3
View File
@@ -56,7 +56,7 @@ is doing.
/* not a complete sentence */
/* A bad mulitiline
/* A bad multiline
comment. */
```
@@ -379,7 +379,7 @@ a = 6;
b = 7;
/* No newlines are allowed between control staments
/* No newlines are allowed between control statements
* and their code blocks. */
if (a > 6)
@@ -429,7 +429,7 @@ a=b+c;
a = b+c;
a += c + ( d );
/* Introduce temporary variables or macros
* if the expression is too long. Occures rarely.. */
* if the expression is too long. Occurs rarely.. */
a = b
+ c;
if ( a + b > 0 )