aboutsummaryrefslogtreecommitdiff
path: root/editor/actions/editor_actions.mli
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2022-02-07 14:58:00 +0100
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:43:33 +0100
commitcee939ada70967b70fe92ca24b3428cc8c8b7c38 (patch)
treecb8df06a6d93c94c221eb2209dee048d04df4bd5 /editor/actions/editor_actions.mli
parenta6e30a95b5dcd34fb9e65d9a26f0844ec75bb004 (diff)
Update editor
Diffstat (limited to 'editor/actions/editor_actions.mli')
-rwxr-xr-xeditor/actions/editor_actions.mli10
1 files changed, 4 insertions, 6 deletions
diff --git a/editor/actions/editor_actions.mli b/editor/actions/editor_actions.mli
index 27b09d7..0e9997b 100755
--- a/editor/actions/editor_actions.mli
+++ b/editor/actions/editor_actions.mli
@@ -1,17 +1,15 @@
type t
-(** Create the elements to be declareds inside the panel *)
+(** Create the elements to be declared inside the panel *)
val build
: unit -> t
-(* Get the events triggered by the actions buttons *)
+(** Get the events triggered by the actions buttons *)
val get_event
: t -> State.event Note.event
-(* Finalize the creation, register the handler to state update, and return the dom elements.
+(** Finalize the creation, register the handler to state update, and return the dom elements.
- Raise an error if already completed.
-
-*)
+ Raise an error if already completed. *)
val complete
: t -> State.t Note.signal -> Brr.El.t list