Skip to content

Commit 5c84d37

Browse files
committed
Fix require paths and return annotations
1 parent 9bb1a1a commit 5c84d37

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/assert/has-map-support/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Detects if a runtime environment supports ES2015 [`Map`][mdn-map].
3636

3737
```javascript
3838
var bool = hasMapSupport();
39-
// returns <Boolean>
39+
// returns <boolean>
4040
```
4141

4242
</section>

lib/node_modules/@stdlib/assert/has-set-support/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Detects if a runtime environment supports ES2015 [`Set`][mdn-set].
3636

3737
```javascript
3838
var bool = hasSetSupport();
39-
// returns <Boolean>
39+
// returns <boolean>
4040
```
4141

4242
</section>

lib/node_modules/@stdlib/assert/has-tostringtag-support/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
## Usage
2828

2929
```javascript
30-
var hasToStringTagSupport = require( '@stdlib/assert/has-symbol-support' );
30+
var hasToStringTagSupport = require( '@stdlib/assert/has-tostringtag-support' );
3131
```
3232

3333
#### hasToStringTagSupport()
@@ -36,7 +36,7 @@ Detects if a runtime environment supports ES2015 [`Symbol.toStringTag`][mdn-symb
3636

3737
```javascript
3838
var bool = hasToStringTagSupport();
39-
// returns <Boolean>
39+
// returns <boolean>
4040
```
4141

4242
</section>

lib/node_modules/@stdlib/assert/has-weakmap-support/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Detects if a runtime environment supports ES2015 [`WeakMap`][mdn-weakmap].
3636

3737
```javascript
3838
var bool = hasWeakMapSupport();
39-
// returns <Boolean>
39+
// returns <boolean>
4040
```
4141

4242
</section>

lib/node_modules/@stdlib/assert/is-date-object-array/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ bool = isDateObjectArray( [ null, {} ] );
6969

7070
```javascript
7171
var Number = require( '@stdlib/number/ctor' );
72-
var isDateObjectArray = require( '@stdlib/assert/is-plain-object-array' );
72+
var isDateObjectArray = require( '@stdlib/assert/is-date-object-array' );
7373

7474
var bool = isDateObjectArray( [ new Date(), new Date(), new Date() ] );
7575
// returns true

lib/node_modules/@stdlib/assert/is-primitive-array/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
## Usage
2828

2929
```javascript
30-
var isPrimitiveArray = require( '@stdlib/assert/is-primitive' );
30+
var isPrimitiveArray = require( '@stdlib/assert/is-primitive-array' );
3131
```
3232

3333
#### isPrimitiveArray( value )

0 commit comments

Comments
 (0)