Skip to content

Commit bcce048

Browse files
committed
2 parents af58d08 + 92b0241 commit bcce048

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/06_std.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This sections gives an overview of the implementation state of the lua system li
55

66
* ![Is compatible to the lua reference.][done] `assert` Calls `System.Diagnostics.Debug.Assert`.
77
* ![Not full compatible to the lua reference.][noco] `collectgarbage` Only the parameter "count" and "collect" are supported. "step" and "isrunning" return always "true". "setpause" returns "false".
8-
"* ![Not full compatible to the lua reference.][noco] `dofile` Redirects to DoChunk to load and run a text file. Optional add parameters for the script.
8+
* ![Not full compatible to the lua reference.][noco] `dofile` Redirects to DoChunk to load and run a text file. Optional add parameters for the script.
99
```Lua
1010
dofile('test.lua', 'a', 1, 'b', 2);
1111
```
@@ -29,7 +29,7 @@ stdin is not supported."
2929
* ![Not full compatible to the lua reference.][noco] `setmetatable` No metatable for userdata, operators are used.
3030
* ![Is compatible to the lua reference.][done] `tonumber`
3131
* ![Is compatible to the lua reference.][done] `tostring`
32-
* ![Is compatible to the lua reference.][done] `type` “type” is extended with a second boolean parameter, that replaces “userdata” with the clr-type-name: type(obj, true);
32+
* ![Is compatible to the lua reference.][done] `type` “type” is extended with a second boolean parameter, that replaces “userdata” with the clr-type-name: type(obj, true);
3333
* ![Is compatible to the lua reference.][done] `_VERSION`
3434
* ![Is compatible to the lua reference.][done] `xpcall`
3535

0 commit comments

Comments
 (0)