Skip to content

Commit

Permalink
fix documentation headers
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesm committed Feb 5, 2019
1 parent 041926d commit e0bd146
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions lib/dhcp_server.mli
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*)

(** {1 DHCP Server } *)

(** A DHCP server is composed of two sub-modules: {! Config} and {! Input}. The
former deals with building a suitable configuration for using with the
later.
Expand Down
10 changes: 4 additions & 6 deletions lib/dhcp_wire.mli
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*)

(** {1 DHCP wire parsers} *)

(** {2 DHCP general data} *)

val client_port : int
Expand Down Expand Up @@ -356,23 +354,23 @@ type htype =
| Ethernet_10mb
| Other

(** Conversions of {! htype}. *)
(** Conversions of {!htype}. *)

val htype_of_sexp : Sexplib.Sexp.t -> htype
val sexp_of_htype : htype -> Sexplib.Sexp.t

(** {2 DHCP header flags}. *)
(** {2 DHCP header flags} *)

type flags =
| Broadcast
| Unicast

(** Conversions of {! flags}. *)
(** Conversions of {!flags}. *)

val flags_of_sexp : Sexplib.Sexp.t -> flags
val sexp_of_flags : flags -> Sexplib.Sexp.t

(** {2 DHCP Client identifier}. *)
(** {2 DHCP Client identifier} *)

type client_id =
| Hwaddr of Macaddr.t
Expand Down

0 comments on commit e0bd146

Please sign in to comment.