Skip to content

Commit

Permalink
Fixed typos in iCNF doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbury committed Nov 24, 2016
1 parent d588bd7 commit e997b3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/languages/icnf/ast_iCNF.ml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ end
module type Statement = sig

type t
(** The type of statements for dimacs. *)
(** The type of statements for iCNF. *)

type term
(** The type of dimacs terms. *)
(** The type of iCNF terms. *)

type location
(** The type of locations. *)
Expand Down
6 changes: 3 additions & 3 deletions src/languages/icnf/iCNF.mli
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

(* This file is free software, part of dolmen. See file "LICENSE" formore information *)

(** Dimacs language input *)
(** iCNF language input *)

module type Term = Ast_iCNF.Term
module type Statement = Ast_iCNF.Statement
(** Implementation requirement for the Dimacs format. *)
(** Implementation requirement for the iCNF format. *)

module Make
(L : ParseLocation.S)
(T : Term with type location := L.t)
(S : Statement with type location := L.t and type term := T.t) :
Language_intf.S with type statement = S.t
(** Functor to generate a parser for the dimacs format. *)
(** Functor to generate a parser for the iCNF format. *)

0 comments on commit e997b3d

Please sign in to comment.