diff --git a/lib/node_modules/@stdlib/array/base/README.md b/lib/node_modules/@stdlib/array/base/README.md
index 197c6de8c5ff..e9cd4b4e467e 100644
--- a/lib/node_modules/@stdlib/array/base/README.md
+++ b/lib/node_modules/@stdlib/array/base/README.md
@@ -109,6 +109,7 @@ The namespace exports the following:
- [`every( x )`][@stdlib/array/base/every]: test whether all elements in an array are truthy.
- [`fancySliceAssign( x, y, s, strict )`][@stdlib/array/base/fancy-slice-assign]: assign element values from a broadcasted input array to corresponding elements in an output array.
- [`fancySlice( x, s, strict )`][@stdlib/array/base/fancy-slice]: return a shallow copy of a portion of an array.
+- [`fillBy( x, start, end, fcn[, thisArg] )`][@stdlib/array/base/fill-by]: fill all elements within a portion of an array according to a callback function.
- [`fill( x, value, start, end )`][@stdlib/array/base/fill]: fill all elements within a portion of an array with a specified value.
- [`filledBy( len, clbk[, thisArg] )`][@stdlib/array/base/filled-by]: create a filled "generic" array according to a provided callback function.
- [`filled( value, len )`][@stdlib/array/base/filled]: create a filled "generic" array.
@@ -431,6 +432,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu );
[@stdlib/array/base/fancy-slice]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/fancy-slice
+[@stdlib/array/base/fill-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/fill-by
+
[@stdlib/array/base/fill]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/fill
[@stdlib/array/base/filled-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/filled-by