docs: make linebreaks to descriptions for better alignment

pull/78/head
sammyette 2021-10-16 15:36:30 -04:00
parent 784e611272
commit bd3e9fdca6
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
2 changed files with 9 additions and 5 deletions

View File

@ -23,8 +23,12 @@ func (b *Bait) Loader(L *lua.LState) int {
L.SetField(mod, "throw", luar.New(L, b.bthrow))
L.SetField(mod, "catch", luar.New(L, b.bcatch))
util.Document(L, mod, `Bait is the event emitter for Hilbish. Why name it bait? Because it throws hooks that you can catch. (emits events that you can listen to) and because why not, fun naming is fun.
This is what you will use if you want to listen in on hooks to know when certain things have happened, like when you've changed directory, a command has failed, etc.`)
util.Document(L, mod, `Bait is the event emitter for Hilbish. Why name it bait?
Because it throws hooks that you can catch
(emits events that you can listen to) and because why not,
fun naming is fun. This is what you will use if you want to
listen in on hooks to know when certain things have happened,
like when you've changed directory, a command has failed, etc.`)
L.Push(mod)
return 1

View File

@ -3,7 +3,6 @@
package fs
import (
"fmt"
"os"
"strings"
@ -15,8 +14,9 @@ import (
func Loader(L *lua.LState) int {
mod := L.SetFuncs(L.NewTable(), exports)
util.Document(L, mod, `The fs module provides easy and simple access to filesystem functions and other
things, and acts an addition to the Lua standard library's I/O and fs functions.`)
util.Document(L, mod, `The fs module provides easy and simple access to
filesystem functions and other things, and acts an
addition to the Lua standard library's I/O and fs functions.`)
L.Push(mod)
return 1