Remove 2 spaces from Markdown lists

This improves rendering of the README.md since 4 spaces intends get treated as code.
This commit is contained in:
Jan Niklas Hasse 2017-05-22 16:52:32 +02:00 committed by GitHub
parent ccc83767ec
commit 7282a3f640
1 changed files with 33 additions and 33 deletions

View File

@ -40,8 +40,8 @@ that are on the roadmap:
* Security limits on the lua stdlib, and general control over the loaded * Security limits on the lua stdlib, and general control over the loaded
lua libraries. lua libraries.
* "Context" or "Sandboxing" support, this was probably a bit too heavyweight * "Context" or "Sandboxing" support, this was probably a bit too heavyweight
in Starbound's API, but there will be the ability to set the _ENV upvalue in Starbound's API, but there will be the ability to set the `_ENV` upvalue
of a loaded chunk to a table other than _G, so that you can have different of a loaded chunk to a table other than `_G`, so that you can have different
environments for different loaded chunks. environments for different loaded chunks.
There are also some more general things that need to be done: There are also some more general things that need to be done:
@ -79,7 +79,7 @@ situations such as:
* Leaving the correct elements on the lua stack and in the correct order, * Leaving the correct elements on the lua stack and in the correct order,
and panicking if these invariants are not met (due to internal bugs). and panicking if these invariants are not met (due to internal bugs).
* Correctly guarding the metatables of userdata so that scripts cannot, for * Correctly guarding the metatables of userdata so that scripts cannot, for
example, swap the __gc methods around and cause UB. example, swap the `__gc` methods around and cause UB.
The library currently attempts to handle each of these situations, but there The library currently attempts to handle each of these situations, but there
are so many ways to cause unsafety with Lua that it just needs more testing. are so many ways to cause unsafety with Lua that it just needs more testing.