Skip to content

Commit b7c2dca

Browse files
committed
Changements niveaux de titres dan les commmentaires
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4194 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
1 parent f0cb1b4 commit b7c2dca

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

stdlib/arrayLabels.mli

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ val fold_right : f:('b -> 'a -> 'a) -> 'b array -> init:'a -> 'a
151151

152152

153153

154-
(** {2 Sorting} *)
154+
(** {6 Sorting} *)
155155

156156

157157
val sort : cmp:('a -> 'a -> int) -> 'a array -> unit
@@ -180,7 +180,7 @@ val stable_sort : cmp:('a -> 'a -> int) -> 'a array -> unit
180180

181181
(**/**)
182182

183-
(** {2 Undocumented functions} *)
183+
(** {6 Undocumented functions} *)
184184

185185
external unsafe_get : 'a array -> int -> 'a = "%array_unsafe_get"
186186
external unsafe_set : 'a array -> int -> 'a -> unit = "%array_unsafe_set"

stdlib/format.mli

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
*)
7070

7171

72-
(** {2 Boxes} *)
72+
(** {6 Boxes} *)
7373

7474
val open_box : int -> unit
7575
(** [open_box d] opens a new pretty-printing box
@@ -86,7 +86,7 @@ val open_box : int -> unit
8686
val close_box : unit -> unit
8787
(** Close the most recently opened pretty-printing box. *)
8888

89-
(** {2 Formatting functions} *)
89+
(** {6 Formatting functions} *)
9090

9191
val print_string : string -> unit
9292
(** [print_string str] prints [str] in the current box. *)
@@ -109,7 +109,7 @@ val print_bool : bool -> unit
109109
(** Print a boolean in the current box. *)
110110

111111

112-
(** {2 Break hints} *)
112+
(** {6 Break hints} *)
113113

114114
val print_space : unit -> unit
115115
(** [print_space ()] is used to separate items (typically to print
@@ -153,7 +153,7 @@ val print_if_newline : unit -> unit
153153
command. *)
154154

155155

156-
(** {2 Margin} *)
156+
(** {6 Margin} *)
157157

158158
val set_margin : int -> unit
159159
(** [set_margin d] sets the value of the right margin
@@ -166,7 +166,7 @@ val get_margin : unit -> int
166166
(** Return the position of the right margin. *)
167167

168168

169-
(** {2 Maximum indentation limit} *)
169+
(** {6 Maximum indentation limit} *)
170170

171171
val set_max_indent : int -> unit
172172
(** [set_max_indent d] sets the value of the maximum
@@ -180,7 +180,7 @@ val get_max_indent : unit -> int
180180
(** Return the value of the maximum indentation limit (in characters). *)
181181

182182

183-
(** {2 Formatting depth: maximum number of boxes allowed before ellipsis} *)
183+
(** {6 Formatting depth: maximum number of boxes allowed before ellipsis} *)
184184

185185
val set_max_boxes : int -> unit
186186
(** [set_max_boxes max] sets the maximum number
@@ -197,7 +197,7 @@ val over_max_boxes : unit -> bool
197197
(** Test if the maximum number of boxes allowed have already been opened. *)
198198

199199

200-
(** {2 Advanced formatting} *)
200+
(** {6 Advanced formatting} *)
201201

202202
val open_hbox : unit -> unit
203203
(** [open_hbox ()] opens a new pretty-printing box.
@@ -231,7 +231,7 @@ val open_hovbox : int -> unit
231231
current indentation. *)
232232

233233

234-
(** {2 Tabulations} *)
234+
(** {6 Tabulations} *)
235235

236236
val open_tbox : unit -> unit
237237
(** Open a tabulation box. *)
@@ -258,7 +258,7 @@ val print_tab : unit -> unit
258258
(** [print_tab ()] is equivalent to [print_tbreak (0,0)]. *)
259259

260260

261-
(** {2 Ellipsis} *)
261+
(** {6 Ellipsis} *)
262262

263263
val set_ellipsis_text : string -> unit
264264
(** Set the text of the ellipsis printed when too many boxes
@@ -268,13 +268,13 @@ val get_ellipsis_text : unit -> string
268268
(** Return the text of the ellipsis. *)
269269

270270

271-
(** {2 Redirecting formatter output} *)
271+
(** {6 Redirecting formatter output} *)
272272

273273
val set_formatter_out_channel : out_channel -> unit
274274
(** Redirect the pretty-printer output to the given channel. *)
275275

276276

277-
(** {2 Changing the meaning of printing material} *)
277+
(** {6 Changing the meaning of printing material} *)
278278

279279
val set_formatter_output_functions :
280280
(string -> int -> int -> unit) -> (unit -> unit) -> unit
@@ -292,7 +292,7 @@ val get_formatter_output_functions :
292292
(** Return the current output functions of the pretty-printer. *)
293293

294294

295-
(** {2 Changing the meaning of pretty printing (indentation, line breaking, and printing material)} *)
295+
(** {6 Changing the meaning of pretty printing (indentation, line breaking, and printing material)} *)
296296

297297
val set_all_formatter_output_functions :
298298
out:(string -> int -> int -> unit) -> flush:(unit -> unit) ->
@@ -321,7 +321,7 @@ val get_all_formatter_output_functions :
321321
including line breaking and indentation functions. *)
322322

323323

324-
(** {2 Multiple formatted output} *)
324+
(** {6 Multiple formatted output} *)
325325

326326
type formatter
327327
(** Abstract data type corresponding to a pretty-printer and
@@ -378,7 +378,7 @@ val make_formatter :
378378
is returned by [make_formatter (output oc) (fun () -> flush oc)]. *)
379379

380380

381-
(** {2 Basic functions to use with formatters} *)
381+
(** {6 Basic functions to use with formatters} *)
382382

383383
val pp_open_hbox : formatter -> unit -> unit
384384
val pp_open_vbox : formatter -> int -> unit
@@ -431,7 +431,7 @@ val pp_get_all_formatter_output_functions :
431431
[print_string] is equal to [pp_print_string std_formatter]. *)
432432

433433

434-
(** {2 [printf] like functions for pretty-printing.} *)
434+
(** {6 [printf] like functions for pretty-printing.} *)
435435

436436
val fprintf : formatter -> ('a, formatter, unit) format -> 'a
437437
(** [fprintf ff format arg1 ... argN] formats the arguments

stdlib/hashtbl.mli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*)
2020

2121

22-
(** {2 Generic interface} *)
22+
(** {6 Generic interface} *)
2323

2424

2525
type ('a, 'b) t
@@ -87,7 +87,7 @@ val fold : ('a -> 'b -> 'c -> 'c) -> ('a, 'b) t -> 'c -> 'c
8787
to [f]. *)
8888

8989

90-
(** {2 Functorial interface} *)
90+
(** {6 Functorial interface} *)
9191

9292

9393
module type HashedType =
@@ -138,7 +138,7 @@ module Make (H : HashedType) : S with type key = H.t
138138
equality and hashing. *)
139139

140140

141-
(** {2 The polymorphic hash primitive} *)
141+
(** {6 The polymorphic hash primitive} *)
142142

143143

144144
val hash : 'a -> int

stdlib/lexing.mli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
(** The run-time library for lexers generated by [ocamllex]. *)
1717

18-
(** {2 Lexer buffers} *)
18+
(** {6 Lexer buffers} *)
1919

2020

2121
type lexbuf =
@@ -53,7 +53,7 @@ val from_function : (string -> int -> int) -> lexbuf
5353
provided. A return value of 0 means end of input. *)
5454

5555

56-
(** {2 Functions for lexer semantic actions} *)
56+
(** {6 Functions for lexer semantic actions} *)
5757

5858

5959
(** The following functions can be called from the semantic actions
@@ -85,7 +85,7 @@ val lexeme_end : lexbuf -> int
8585

8686
(**/**)
8787

88-
(** {2 } *)
88+
(** {6 } *)
8989

9090
(** The following definitions are used by the generated scanners only.
9191
They are not intended to be used by user programs. *)

0 commit comments

Comments
 (0)