File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,6 @@ let source_files_all =
273273 (" functor.mli" , [ " Functor/index.html" ]);
274274 (" class.mli" , [ " Class/index.html" ]);
275275 (" stop.mli" , [ " Stop/index.html" ]);
276- (" stop_dead_link_doc.mli" , [ " Stop_dead_link_doc/index.html" ]);
277276 (" bugs.ml" , [ " Bugs/index.html" ]);
278277 (" alias.ml" , [ " Alias/index.html" ; " Alias/X/index.html" ]);
279278 ]
@@ -290,6 +289,9 @@ let source_files_post408 =
290289
291290let source_files_pre410 = [ (" bugs_pre_410.ml" , [ " Bugs_pre_410/index.html" ]) ]
292291
292+ let source_files_stop_dead_link_doc =
293+ [ (" stop_dead_link_doc.mli" , [ " Stop_dead_link_doc/index.html" ]) ]
294+
293295let source_files =
294296 let cur =
295297 Astring.String. cuts ~sep: " ." Sys. ocaml_version
@@ -302,6 +304,8 @@ let source_files =
302304 (if major = 4 && minor < 10 then source_files_pre410 else [] );
303305 (if major = 4 && minor > 8 then source_files_post408 else [] );
304306 (if major = 4 && minor > = 6 then source_files_post406 else [] );
307+ ( if major = 4 && minor > = 4 then source_files_stop_dead_link_doc
308+ else [] );
305309 source_files_all;
306310 ]
307311 | _ -> source_files_all
You can’t perform that action at this time.
0 commit comments