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
@@ -82,8 +82,8 @@ typedef enum
void jerry_port_log (jerry_log_level_t level, const char *fmt, ...);
```
The `jerry_port_print_char` is currenlty not used by the jerry-core directly.
However, it provides a port specifc way for `jerry-ext` components to print
The `jerry_port_print_char` is currently not used by the jerry-core directly.
However, it provides a port specific way for `jerry-ext` components to print
information.
```c
@@ -294,7 +294,7 @@ void
jerry_port_print_char (char c)
{
putchar (c);
} /* jerr_port_print_char */
} /* jerry_port_print_char */
```
## Date