necessary 11.1.1 → 11.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -698,7 +698,7 @@ separate([1, -1, -2, 2, 3, -3], [], [], (element, index) => {
698
698
  }); // the second and third array arguments become [1, 2, 3] and [-1, -2, 3], respectively.
699
699
  ```
700
700
 
701
- The `forwardsFind()`, `backwardsFind()`, `forwardsSome()`, `backwardsSome()`, `forwardsEvery()`, `backwardsEvery()`, `forwardsReduce()`, `backwardsReduce()`, `forwardsForEach()` and `backwardsForEach()` functions do as their names suggest. The `fowardsXXX()` take an array for their first argument but otherwise are identical to their native counterparts. The `backwardsXXX()` functions behave similarly, only backwards.
701
+ The `forwardsXXX()` and `backwardsXXX()`functions do as their names suggest. The `fowardsXXX()` function take an array for their first argument but otherwise behave identically to their native counterparts. The `backwardsXXX()` functions behave similarly, only backwards.
702
702
 
703
703
  ## HTTP utilities
704
704
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "necessary",
3
3
  "author": "James Smith",
4
- "version": "11.1.1",
4
+ "version": "11.1.2",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/necessary",
7
7
  "description": "A collection of utility functions.",