From: Haelwenn (lanodan) Monnier Date: Tue, 17 Sep 2019 20:22:54 +0000 (+0200) Subject: markdown.ex: Make suggestion(s) plural only if on >1 X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=d6182a3c8fef6377c20bb827a8e86bdac5bfb125;p=akkoma markdown.ex: Make suggestion(s) plural only if on >1 --- diff --git a/lib/pleroma/docs/markdown.ex b/lib/pleroma/docs/markdown.ex index 739e4fce3..fc6389064 100644 --- a/lib/pleroma/docs/markdown.ex +++ b/lib/pleroma/docs/markdown.ex @@ -73,13 +73,15 @@ defmodule Pleroma.Docs.Markdown do defp print_suggestions(_file, ""), do: nil defp print_suggestions(file, suggestions) do - IO.write(file, "Suggestions:\n") - if length(suggestions) > 1 do + IO.write(file, "Suggestions:\n") + for suggestion <- suggestions do print_suggestion(file, suggestion, true) end else + IO.write(file, "Suggestion:\n") + print_suggestion(file, List.first(suggestions)) end end