Skip to content

Commit

Permalink
Merge pull request redux-saga#272 from secobarbital/patch-1
Browse files Browse the repository at this point in the history
Match buffer names in documentation.
  • Loading branch information
yelouafi committed Apr 25, 2016
2 parents 4e9cea6 + 1506752 commit f09e952
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/internal/buffers.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ function arrBuffer(limit = Infinity, overflowAction) {
}

export const buffers = {
none : () => zeroBuffer,
fixed : limit => arrBuffer(limit, ON_OVERFLOW_THROW),
drop : limit => arrBuffer(limit, ON_OVERFLOW_DROP),
slide : limit => arrBuffer(limit, ON_OVERFLOW_SLIDE)
none: () => zeroBuffer,
fixed: limit => arrBuffer(limit, ON_OVERFLOW_THROW),
dropping: limit => arrBuffer(limit, ON_OVERFLOW_DROP),
sliding: limit => arrBuffer(limit, ON_OVERFLOW_SLIDE)
}

0 comments on commit f09e952

Please sign in to comment.