Skip to content

Commit

Permalink
fix(graindoc): Use Markdown bold helper for each case of bolding (gra…
Browse files Browse the repository at this point in the history
  • Loading branch information
phated authored and av8ta committed Apr 11, 2023
1 parent fd00fba commit 67e6e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/graindoc/docblock.re
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ let () =
let title_for_api = (~module_namespace, name) => {
switch (module_namespace) {
| Some(module_namespace) =>
Format.sprintf("%s.**%s**", module_namespace, name)
Format.sprintf("%s.%s", module_namespace, Markdown.bold(name))
| None => name
};
};
Expand Down

0 comments on commit 67e6e4b

Please sign in to comment.