Fix typos in the documentation and related files (#4809)

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 11:37:05 +01:00
committed by GitHub
parent 89e367bbfd
commit 6a995e2887
39 changed files with 173 additions and 168 deletions
+3 -3
View File
@@ -46,7 +46,7 @@ is doing.
/* not a complete sentence */
/* A bad mulitiline
/* A bad multiline
comment. */
```
@@ -369,7 +369,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)
@@ -419,7 +419,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 )