diff options
Diffstat (limited to 'reference.md')
-rw-r--r-- | reference.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/reference.md b/reference.md index 3234cfa..5c3c29f 100644 --- a/reference.md +++ b/reference.md @@ -189,9 +189,9 @@ early warning if you break something. * `state = edit.initialize_state(top, left, right, font_height, line_height)` -- returns an object that can be used to render an interactive editor widget - for text and line drawings starting at `y=top` on the app window, between - `x=left` and `x=right`. Wraps long lines at word boundaries where possible, - or in the middle of words (no hyphenation yet) when it must. + for text starting at `y=top` on the app window, between `x=left` and + `x=right`. Wraps long lines at word boundaries where possible, or in the + middle of words (no hyphenation yet) when it must. * `edit.quit()` -- calling this ensures any final edits are flushed to disk before the app exits. |