Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jugyo committed Mar 27, 2009
1 parent 18e58fe commit 4c459d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/termcolor.rb
Expand Up @@ -24,7 +24,7 @@ def escape(text)
when '<' then '&lt;'
when '>' then '&gt;'
when "'" then '&apos;'
when '"' then '&quote;'
when '"' then '&quot;'
end
end
end
Expand All @@ -36,7 +36,7 @@ def unescape(text)
when '&lt;' then '<'
when '&gt;' then '>'
when '&apos;' then "'"
when '&quote;' then '"'
when '&quot;' then '"'
end
end
end
Expand Down

0 comments on commit 4c459d3

Please sign in to comment.