summaryrefslogtreecommitdiff
path: root/editor/actions/load_page.ml
diff options
context:
space:
mode:
Diffstat (limited to 'editor/actions/load_page.ml')
-rwxr-xr-xeditor/actions/load_page.ml9
1 files changed, 3 insertions, 6 deletions
diff --git a/editor/actions/load_page.ml b/editor/actions/load_page.ml
index e85f8b5..0d02f71 100755
--- a/editor/actions/load_page.ml
+++ b/editor/actions/load_page.ml
@@ -1,10 +1,7 @@
+(** Load the page with the given ID in the editor *)
module M = struct
-
type t = Jstr.t option
- let process
- : t -> State.t -> State.t
- = fun page_id state ->
- State.load_page page_id state
-
+ let process : t -> State.t -> State.t =
+ fun page_id state -> State.load_page page_id state
end