whitespace

This commit is contained in:
Jay Hayes
2016-06-10 11:39:17 -05:00
parent efb3d116c7
commit ae2e7feeac

View File

@@ -1,8 +1,6 @@
defmodule Display.Paint do
def red(str), do: painter().red(str)
def cyan(str), do: painter().cyan(str)
def green(str), do: painter().green(str)
defp painter do
@@ -17,9 +15,7 @@ defmodule Display.Colours do
alias IO.ANSI
def red(str), do: colourize(ANSI.red, str)
def cyan(str), do: colourize(ANSI.cyan, str)
def green(str), do: colourize(ANSI.green, str)
defp colourize(color, message) do