Merge pull request #54 from dkinzer/Fix-spelling

Fix spelling.
This commit is contained in:
Colin Jones 2013-08-03 18:14:10 -07:00
commit 725abe45d5

View File

@ -5,7 +5,7 @@
"But watch out if there are not enough elements to form n sequences" "But watch out if there are not enough elements to form n sequences"
(= '(__) (partition 3 [:a :b :c :d :e])) (= '(__) (partition 3 [:a :b :c :d :e]))
"You can use partition-all to also get partitions with less then n elements" "You can use partition-all to also get partitions with less than n elements"
(= __ (partition-all 3 (range 5))) (= __ (partition-all 3 (range 5)))
"If you need to, you can start each sequence with an offset" "If you need to, you can start each sequence with an offset"