Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ganapativs committed Sep 13, 2019
1 parent f75ab07 commit 819ec72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-delightful-scroller/src/getBatchedItems.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const getBatchedItems = (items, batchSize = 1) => {
const batched = [];

// Faster that clone and splice
// Faster than clone and splice
for (let index = 0; index < items.length; index += batchSize) {
const chunk = items.slice(index, index + batchSize);
// Do something if you want with the group
Expand Down

0 comments on commit 819ec72

Please sign in to comment.