Skip to content

Commit dac9d95

Browse files
committed
Fixed documentation warnings
1 parent ded6469 commit dac9d95

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/postgresql.mli

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ val null : string
213213
Indices of tuples and fields start at 0!
214214
*)
215215
class type result = object
216-
(** Main routines *)
216+
(* Main routines *)
217217

218218
method status : result_status
219219
(** [#status] @return status of a command/query result. *)
@@ -426,6 +426,8 @@ external conndefaults : unit -> conninfo_option array = "PQconndefaults_stub"
426426
@param startonly If true, initiate a non-blocking connect procedure, which
427427
involves cooperative calls to {!connect_poll} before the connection is
428428
usable.
429+
430+
@raise Error if there is a connection failure.
429431
*)
430432
class connection :
431433
?host : string -> (* Default: none *)
@@ -440,9 +442,8 @@ class connection :
440442
?conninfo : string -> (* Default: none *)
441443
?startonly : bool -> (* Default: false *)
442444
unit ->
443-
(** @raise Error if there is a connection failure. *)
444445
object
445-
(** Main routines *)
446+
(* Main routines *)
446447

447448
method finish : unit
448449
(** [#finish] closes the connection.

0 commit comments

Comments
 (0)