Skip to content

Commit

Permalink
Contributor paragraph should not contain bullet points
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 20, 2023
1 parent ecc954b commit 8456d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/org/openrewrite/RecipeMarkdownGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1162,9 +1162,9 @@ class RecipeMarkdownGenerator : Runnable {
writeln(recipeDescriptor.contributors.stream()
.map { contributor: Contributor ->
if (contributor.email.contains("noreply")) {
"* " + contributor.name
contributor.name
} else {
"* [" + contributor.name + "](mailto:" + contributor.email + ")"
"[" + contributor.name + "](mailto:" + contributor.email + ")"
}
}.collect(Collectors.joining(", "))
)
Expand Down

0 comments on commit 8456d9b

Please sign in to comment.