summaryrefslogtreecommitdiff
path: root/dev/ocamlweb-doc/parse.ml
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ocamlweb-doc/parse.ml')
-rw-r--r--dev/ocamlweb-doc/parse.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ocamlweb-doc/parse.ml b/dev/ocamlweb-doc/parse.ml
index e537b1f2..b145fffd 100644
--- a/dev/ocamlweb-doc/parse.ml
+++ b/dev/ocamlweb-doc/parse.ml
@@ -82,7 +82,7 @@ let rec str_stack = function
| Term (t,s) -> str_stack s ^ " (" ^ str_ast t ^ ")"
| Oper(ops,lop,t,s) ->
str_stack (Term(t,s)) ^ " " ^ lop ^ " " ^
- String.concat " " (List.rev ops)
+ String.concat " " (List.rev ops)
let pps s = prerr_endline (str_stack s)
let err s stk = failwith (s^": "^str_stack stk)