Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 6, 2021
1 parent 2661024 commit 373e7db
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion define-configurable-read-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Configurable read-only accessors are **enumerable**.
Expand Down
2 changes: 1 addition & 1 deletion define-configurable-read-only-property/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Configurable read-only properties are **enumerable**.
Expand Down
2 changes: 1 addition & 1 deletion define-configurable-read-write-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ v = obj.foo;
<!-- /.usage -->

<section class="notes">

## Notes

- Configurable read-write accessors are **enumerable**.
Expand Down
2 changes: 1 addition & 1 deletion define-configurable-write-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var bool = ( val === 'boop' );
<!-- /.usage -->

<section class="notes">

## Notes

- Configurable write-only accessors are **enumerable**.
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-property/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var v = obj.foo;
<!-- /.usage -->

<section class="notes">

## Notes

- Non-enumerable properties are **writable** and **configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Non-enumerable read-only accessors are **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-only-property/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Non-enumerable read-only properties are **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-read-write-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ v = obj.foo;
<!-- /.usage -->

<section class="notes">

## Notes

- Non-enumerable read-write accessors are **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-nonenumerable-write-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var bool = ( val === 'boop' );
<!-- /.usage -->

<section class="notes">

## Notes

- Non-enumerable write-only accessors are **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-read-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Read-only accessors are **enumerable** and **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-read-only-property/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ obj.foo = 'boop';
<!-- /.usage -->

<section class="notes">

## Notes

- Read-only properties are **enumerable** and **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-read-write-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ v = obj.foo;
<!-- /.usage -->

<section class="notes">

## Notes

- Read-write accessors are **enumerable** and **non-configurable**.
Expand Down
2 changes: 1 addition & 1 deletion define-write-only-accessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var bool = ( val === 'boop' );
<!-- /.usage -->

<section class="notes">

## Notes

- Write-only accessors are **enumerable** and **non-configurable**.
Expand Down

0 comments on commit 373e7db

Please sign in to comment.