Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalIcing committed Dec 14, 2023
1 parent ab98c6b commit aa97535
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ defmodule ComponentsGuide.Wasm.PodcastFeed.XMLFormatter do
end

def inner_start() do
%__MODULE__{position: :inner_start, body: append!(string: ~S"<![CDATA[")}
%__MODULE__{position: :inner_start, body: append!(string: "<![CDATA[")}
end

def inner_finish() do
%__MODULE__{position: :inner_finish, body: append!(string: ~S"]]>")}
%__MODULE__{position: :inner_finish, body: append!(string: "]]>")}
end

defimpl Orb.ToWat do
Expand Down

0 comments on commit aa97535

Please sign in to comment.