Skip to content

Commit

Permalink
docs: regenerate reference manual for v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Nov 11, 2022
1 parent 1f18ac7 commit 3cedfbd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/0.reference-manual.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LuaRadio Reference Manual

Generated from LuaRadio `v0.10.0`.
Generated from LuaRadio `v0.11.0`.

## Table of contents

Expand Down Expand Up @@ -409,6 +409,10 @@ end

Stop a top-level block and wait until it has finished.

###### Returns

* Successful exit (*bool*)

###### Example

``` lua
Expand All @@ -423,13 +427,17 @@ top:stop()
Wait for a top-level block to finish, either by natural termination or by
`SIGINT`.

###### Returns

* Successful exit (*bool*)

###### Example

``` lua
-- Start a top-level block
top:start()
-- Wait for the top-level block to finish
top:wait()
local success = top:wait()
```

--------------------------------------------------------------------------------
Expand Down

0 comments on commit 3cedfbd

Please sign in to comment.