Browse Source

Improve message when resetting colors

Leo 9 years ago
parent
commit
efea3963b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/messages.ml

+ 1 - 1
src/messages.ml

@@ -144,7 +144,7 @@ let tips message =
 (* Reset printing, to avoid color problem on some terminal (Konsole), the  *)
 let reset () =
     match !already with
-    | true -> debug "Resetted";
+    | true -> debug "Resetted colors";
         Core_extended.Color_print.normal "" |> printf "%s\n"
     | false -> debug "Not resetted"; ()
 ;;