From: Jean-Christophe Beaupré Date: Wed, 15 Oct 2014 14:18:40 +0000 (-0400) Subject: console: use snake case. X-Git-Tag: v0.6.10~31^2 X-Git-Url: http://nitlanguage.org console: use snake case. Correct a little mistake. Signed-off-by: Jean-Christophe Beaupré --- diff --git a/lib/console.nit b/lib/console.nit index d032886..04dcb6e 100644 --- a/lib/console.nit +++ b/lib/console.nit @@ -70,7 +70,7 @@ class TermCharFormat fun inverse: TermCharFormat do return apply("7") # Apply normal weight and return `self`. - fun normalWeight: TermCharFormat do return apply("22") + fun normal_weight: TermCharFormat do return apply("22") # Add the attribute that disable inderlining and return `self`. fun not_underlined: TermCharFormat do return apply("24")