diff options
author | dtluna <dtluna@openmailbox.org> | 2017-04-27 16:18:50 +0300 |
---|---|---|
committer | dtluna <dtluna@openmailbox.org> | 2017-04-27 16:18:50 +0300 |
commit | 6cf7c132282e612514af992c6dea0b03ee5b678d (patch) | |
tree | 638e04628e5eecd492d23fadcebf00a21b702448 /lib/xml_builder.ex | |
parent | fb5cebc1b5dcfd6af7fa1a81bc5b26275714fa26 (diff) | |
download | pleroma-6cf7c132282e612514af992c6dea0b03ee5b678d.tar.gz pleroma-6cf7c132282e612514af992c6dea0b03ee5b678d.zip |
Refactor code to comply with credo suggestions
Diffstat (limited to 'lib/xml_builder.ex')
-rw-r--r-- | lib/xml_builder.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex index ac1ac8a74..c6d144903 100644 --- a/lib/xml_builder.ex +++ b/lib/xml_builder.ex @@ -30,13 +30,13 @@ defmodule Pleroma.XmlBuilder do NaiveDateTime.to_iso8601(time) end - def to_doc(content), do: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" <> to_xml(content) + def to_doc(content), do: ~s(<?xml version="1.0" encoding="UTF-8"?>) <> to_xml(content) defp make_open_tag(tag, attributes) do attributes_string = for {attribute, value} <- attributes do "#{attribute}=\"#{value}\"" end |> Enum.join(" ") - Enum.join([tag, attributes_string], " ") |> String.strip + [tag, attributes_string] |> Enum.join(" ") |> String.strip end end |