Browse Source

Whitespace error

Leo 8 years ago
parent
commit
76303200d1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/command_def.ml
  2. 1 1
      src/id_parsing.ml

+ 1 - 1
src/command_def.ml

@@ -201,7 +201,7 @@ let add =
     Spec.(
       empty
       +> shared_params
-      +> anon  (maybe ("number" %: int))
+      +> anon (maybe ("number" %: int))
     )
     (fun { rc } num_cmd () ->
        let rc = Lazy.force rc in

+ 1 - 1
src/id_parsing.ml

@@ -86,7 +86,7 @@ let deinter = function
  * 1,5 → [ 1; 5 ]
  * 1-5 → [1; 2; 3; 4; 5]
  * Multiple occurances should stay, i.e.
- * 1,3,1-4 → [1,3,1,2,3,4] 
+ * 1,3,1-4 → [1,3,1,2,3,4]
  * Order matters:
  * 1-3 → [1,2,3]
  * 3-1 → [3,2,1] *)