Skip to content

Commit

Permalink
Merge pull request FFTW#158 from katterjohn/typo-fix
Browse files Browse the repository at this point in the history
Fix the incorrect comment about Util.interval
  • Loading branch information
matteo-frigo authored Dec 2, 2018
2 parents c6bebdb + 80a8d61 commit 4754dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genfft/util.ml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ let info string =
(* iota n produces the list [0; 1; ...; n - 1] *)
let iota n = forall [] cons 0 n identity

(* interval a b produces the list [a; 1; ...; b - 1] *)
(* interval a b produces the list [a; a + 1; ...; b - 1] *)
let interval a b = List.map ((+) a) (iota (b - a))

(*
Expand Down

0 comments on commit 4754dfd

Please sign in to comment.