diff options
| author | ame <[email protected]> | 2024-07-11 12:49:35 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-07-11 12:49:35 -0500 |
| commit | 701d2e4fbb05dc0718d0969a7de3720fc1760abc (patch) | |
| tree | 15f3f696f57b39f8158ad14ce6144ea5dd8b3ba0 /docs/readme.md | |
| parent | e15e58cc2fda7d9a6ed22fcb7be35e097d745c74 (diff) | |
make reg return table
Diffstat (limited to 'docs/readme.md')
| -rw-r--r-- | docs/readme.md | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/docs/readme.md b/docs/readme.md index 9427403..9fbb022 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -4,17 +4,10 @@ with the library in the same directory [(or one of the other valid search locations)](https://www.lua.org/pil/8.1.html)
```lua
-require "llib"
+llib = require "llib"
```
-which makes a global llib table
-
-> ### future require versions will eventually return the table
-> ```lua
-> llib = require "llib"
-> ```
-
-the table has many subtables and functions, with related function in them, you can view them like so
+returns a table has many subtables and functions, with related function in them, you can view them like so
```lua
llib.io.pprint(llib) --pprint is a part of the io module, pprint meaning pretty print
|
