From 9c0ffeaa94bfe84f62840ecb1fd9bcf7990b3557 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 25 Aug 2019 18:35:07 +0200 Subject: [PATCH] Fix documentation issues --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ef7a62d..7a51594 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you just want to split an array into two parts (eg. based on a `true`/`false` ```js "use strict"; -const splitFilterN = require("./"); +const splitFilterN = require("split-filter-n"); let words = [ "apple", @@ -82,14 +82,19 @@ __If it's an optional feature, why does it come before the required `predicate`? ## Changelog -# 1.1.0 (August 19, 2019) +### 1.1.1 (August 25, 2019) + +- Fixed `require` in documentation example. +- Fixed changelog formatting. + +### 1.1.0 (August 19, 2019) - __New:__ Predicate function now also receives the index of the value as an argument, not just the value itself. -# 1.0.1 (August 19, 2019) +### 1.0.1 (August 19, 2019) - Clarified `ensureCategories` documentation with additional example. -# 1.0.0 (August 19, 2019) +### 1.0.0 (August 19, 2019) Initial release.