Skip to content

Commit e5937e0

Browse files
committed
fix id module
1 parent 01631e9 commit e5937e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analysis/src/DocExtraction.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ let extractDocs ~path ~debug =
267267
let rec extractDocsForModule ?(modulePath = [env.file.moduleName])
268268
(structure : Module.structure) =
269269
{
270-
id = modulePath |> ident;
270+
id = modulePath |> List.rev |> ident;
271271
docstring = structure.docstring |> List.map String.trim;
272272
name = structure.name;
273273
deprecated = structure.deprecated;

0 commit comments

Comments
 (0)