Skip to content

Commit

Permalink
Merge pull request #615 from reduxjs/EskiMojo14-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Oct 28, 2023
2 parents a87ac69 + 918e0d0 commit fd0664d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ import { setInputStabilityCheckEnabled } from 'reselect'
setInputStabilityCheckEnabled('once')

// always run
setInputStabilityCheckEnabled(true)
setInputStabilityCheckEnabled('always')

// never run
setInputStabilityCheckEnabled(false)
setInputStabilityCheckEnabled('never')
```

#### Per-selector configuration
Expand All @@ -369,7 +369,7 @@ const selectPersonName = createSelector(
person => person.firstName + ' ' + person.lastName,
// `inputStabilityCheck` accepts the same settings
// as `setInputStabilityCheckEnabled`
{ inputStabilityCheck: false }
{ inputStabilityCheck: 'never' }
)
```

Expand Down

0 comments on commit fd0664d

Please sign in to comment.