🎨 fix typo in report info

This commit is contained in:
ValKmjolnir
2024-08-03 14:18:29 +08:00
parent 21911f21f0
commit cf2323623b
6 changed files with 42 additions and 58 deletions

View File

@@ -517,7 +517,7 @@ nasal_builtin_table builtin[] = {
};
```
At last,warp the `__print` in a nasal file:
At last, wrap the `__print` up in a nasal file:
```javascript
var print = func(elems...) {
@@ -534,7 +534,7 @@ var print = func(elems...) {
};
```
If you don't warp built-in function in a normal nasal function,
If you don't wrap built-in function up in a normal nasal function,
this native function may cause __segmentation fault__ when searching arguments.
Use `import("filename.nas")` to get the nasal file including your built-in functions, then you could use it.