Browse Source

Code clean-up

 + Line longer than 80 characters.
Leo 9 years ago
parent
commit
0ed5b11685
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/command_def.ml

+ 2 - 1
src/command_def.ml

@@ -229,7 +229,8 @@ let licence =
            ~doc:" Display the header of the licence"
     )
     (fun _ header () ->
-       let cecill = not(header) in (* When cecill is false, it displays the header *)
+       (* When cecill is false, it displays the header *)
+       let cecill = not(header) in
        Licencing.print ~cecill
     )
 ;;