Skip to content

Commit

Permalink
Merge pull request #131 from liyishuai/patch-1
Browse files Browse the repository at this point in the history
Add space after bullet
  • Loading branch information
rjbou authored Oct 13, 2021
2 parents 77945e0 + 58d1698 commit 08d69c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/publishMain.ml
Original file line number Diff line number Diff line change
Expand Up @@ -563,12 +563,12 @@ let pull_request_message ?msg meta_opams =
match identical OpamFile.OPAM.synopsis opams_l with
| Some (Some s) ->
Printf.sprintf "%s\n\nThis pull-request concerns:\n%s\n" s
(OpamStd.Format.itemize ~bullet:"-"
(OpamStd.Format.itemize ~bullet:"- "
(fun (nv, _) -> Printf.sprintf "`%s`" (OpamPackage.to_string nv))
ps)
| _ ->
Printf.sprintf "This pull-request concerns:\n%s\n"
(OpamStd.Format.itemize ~bullet:"-"
(OpamStd.Format.itemize ~bullet:"- "
(fun (nv, o) ->
match OpamFile.OPAM.synopsis o with
| Some s ->
Expand Down

0 comments on commit 08d69c0

Please sign in to comment.