We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a1fbde commit 2e66218Copy full SHA for 2e66218
lib/elixir/lib/io/ansi.ex
@@ -150,7 +150,7 @@ defmodule IO.ANSI do
150
151
## Example
152
153
- IO.puts IO.ANSI.escape "Hello %{red,bright,green}yes" #=>
+ IO.ANSI.escape "Hello %{red,bright,green}yes" #=>
154
"Hello \e[31m\e[1m\e[32myes\e[0m"
155
"""
156
@spec escape(String.t, emit :: boolean) :: String.t
@@ -171,7 +171,7 @@ defmodule IO.ANSI do
171
172
173
174
- IO.puts IO.ANSI.escape "Hello %{red,bright,green}yes%{reset}" #=>
+ IO.ANSI.escape "Hello %{red,bright,green}yes%{reset}" #=>
175
176
177
0 commit comments