diff --git a/src/com/owoga/phonetics/syllabify.clj b/src/com/owoga/phonetics/syllabify.clj index 8ad3145..17d5b61 100644 --- a/src/com/owoga/phonetics/syllabify.clj +++ b/src/com/owoga/phonetics/syllabify.clj @@ -33,7 +33,8 @@ (> (sonority a) (sonority b))) (defn slurp-rime - "Returns a vector of the rime and the remaining phones to process." + "Expects the phones in reverse order. + Returns a vector of the rime (in forwards order) and the remaining phones to process." [phones] (let [splits (util/take-through vowel? phones)] [(vec (reverse (first splits))) (vec (flatten (rest splits)))]))