From 6cf05bc7338c6106822b6860311aa26a16ccdebe Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 16 Mar 2022 22:52:53 -0400 Subject: [PATCH] doc --- src/Tiny_httpd_html.ml | 8 ++++++++ src/gen/gentags.ml | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/Tiny_httpd_html.ml b/src/Tiny_httpd_html.ml index 2ebf6b1b..52383ebd 100644 --- a/src/Tiny_httpd_html.ml +++ b/src/Tiny_httpd_html.ml @@ -1,4 +1,12 @@ +(** HTML combinators. + + This module provides combinators to produce html. It doesn't enforce + the well-formedness of the html, unlike Tyxml, but it's simple and should + be reasonably efficient. + @since NEXT_RELEASE +*) + (** @inline *) include Tiny_httpd_html_ diff --git a/src/gen/gentags.ml b/src/gen/gentags.ml index a2c8a461..9b6d3129 100644 --- a/src/gen/gentags.ml +++ b/src/gen/gentags.ml @@ -281,7 +281,10 @@ let prelude = {| (** Output for HTML combinators. This output type is used to produce a string reasonably efficiently from - a tree of combinators. *) + a tree of combinators. + + @since NEXT_RELEASE + @open *) module Out : sig type t val create : unit -> t