Skip to content

Commit 1662b51

Browse files
committed
Improved comment formatting
1 parent ace33fa commit 1662b51

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/sqlite3.mli

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,11 @@ val db_close : db -> bool
345345

346346
val ( let& ) : db -> (db -> 'a) -> 'a
347347
(** [let& db = db_open "..." in ...scope that uses db...] ensures that the
348-
database [db] is safely closed at the end of the scope, even if there is an
349-
exception somewhere in the scope.
348+
database [db] is safely closed at the end of the scope, even if there
349+
is an exception somewhere in the scope.
350350
351-
@raise Fun.Finally_raised if the database could not be closed successfully. *)
351+
@raise Fun.Finally_raised if the database could not be closed successfully.
352+
*)
352353

353354
val enable_load_extension : db -> bool -> bool
354355
(** [enable_load_extension db onoff] enable/disable the SQLite3 load

0 commit comments

Comments
 (0)