File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 50
50
51
51
(install
52
52
(section doc)
53
- (files odoc-config.sexp (odoc_logo_placeholder.jpg as odoc-pages/odoc_logo_placeholder.jpg))
53
+ (files
54
+ odoc-config.sexp
55
+ (odoc_logo_placeholder.jpg as odoc-pages/odoc_logo_placeholder.jpg))
54
56
(package odoc))
Original file line number Diff line number Diff line change @@ -103,7 +103,8 @@ let package_list ~dirs all =
103
103
in
104
104
fpf ppf " {0 List of all packages}@\n " ;
105
105
let print_pkg pkg =
106
- if pkg.selected then fpf ppf " - {{:%s/index.html}%s}@\n " pkg.name pkg.name in
106
+ if pkg.selected then fpf ppf " - {{:%s/index.html}%s}@\n " pkg.name pkg.name
107
+ in
107
108
List. iter print_pkg sorted_packages
108
109
in
109
110
let content = content all in
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ let packages ~dirs ~extra_paths ~remap (pkgs : Packages.t list) : t list =
200
200
in
201
201
let index = index_of pkg in
202
202
let units = List. concat_map (of_module pkg lib lib_deps) lib.modules in
203
- if pkg.selected then
203
+ if pkg.selected then
204
204
let landing_page :> t = Landing_pages. library ~dirs ~pkg ~index lib in
205
205
landing_page :: units
206
206
else units
@@ -284,7 +284,8 @@ let packages ~dirs ~extra_paths ~remap (pkgs : Packages.t list) : t list =
284
284
| Some { mip_src_info = Some _ ; _ } -> true
285
285
| _ -> false )
286
286
lib.Packages. modules)
287
- pkg.libraries && pkg.selected
287
+ pkg.libraries
288
+ && pkg.selected
288
289
then
289
290
let index = index_of pkg in
290
291
[ Landing_pages. src ~dirs ~pkg ~index ]
You can’t perform that action at this time.
0 commit comments