Skip to content

Commit dca9cf7

Browse files
committed
docs: change indentation from tabs to spaces in JSDoc example code
1 parent 07e6c5a commit dca9cf7

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

lib/node_modules/@stdlib/assert/is-complex-typed-array-like/lib/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
* // returns true
3232
*
3333
* bool = isComplexTypedArrayLike({
34-
* 'length': 10,
35-
* 'byteOffset': 0,
36-
* 'byteLength': 10,
37-
* 'BYTES_PER_ELEMENT': 4,
38-
* 'get': function get() {},
39-
* 'set': function set() {}
34+
* 'length': 10,
35+
* 'byteOffset': 0,
36+
* 'byteLength': 10,
37+
* 'BYTES_PER_ELEMENT': 4,
38+
* 'get': function get() {},
39+
* 'set': function set() {}
4040
* });
4141
* // returns true
4242
*/

lib/node_modules/@stdlib/assert/is-complex-typed-array-like/lib/main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ var MAX_LENGTH = MAX / 2; // every complex array element has both a real and ima
3939
*
4040
* @example
4141
* var arr = {
42-
* 'BYTES_PER_ELEMENT': 8,
43-
* 'length': 10,
44-
* 'byteOffset': 0,
45-
* 'byteLength': 10,
46-
* 'get': function get() {},
47-
* 'set': function set() {}
42+
* 'BYTES_PER_ELEMENT': 8,
43+
* 'length': 10,
44+
* 'byteOffset': 0,
45+
* 'byteLength': 10,
46+
* 'get': function get() {},
47+
* 'set': function set() {}
4848
* };
4949
* var val = isComplexTypedArrayLike( arr );
5050
* // returns true

lib/node_modules/@stdlib/assert/is-typed-array-like/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
* // returns true
3232
*
3333
* bool = isTypedArrayLike({
34-
* 'length': 10,
35-
* 'byteOffset': 0,
36-
* 'byteLength': 10,
37-
* 'BYTES_PER_ELEMENT': 4
34+
* 'length': 10,
35+
* 'byteOffset': 0,
36+
* 'byteLength': 10,
37+
* 'BYTES_PER_ELEMENT': 4
3838
* });
3939
* // returns true
4040
*/

lib/node_modules/@stdlib/assert/is-typed-array-like/lib/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ var MAX = require( '@stdlib/constants/array/max-typed-array-length' );
3434
*
3535
* @example
3636
* var arr = {
37-
* 'BYTES_PER_ELEMENT': 8,
38-
* 'length': 10,
39-
* 'byteOffset': 0,
40-
* 'byteLength': 10
37+
* 'BYTES_PER_ELEMENT': 8,
38+
* 'length': 10,
39+
* 'byteOffset': 0,
40+
* 'byteLength': 10
4141
* };
4242
* var val = isTypedArrayLike( arr );
4343
* // returns true

lib/node_modules/@stdlib/datasets/cmudict/lib/browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var dataCMU = require( './data.js' );
4646
*
4747
* @example
4848
* var data = cmudict({
49-
* 'data': 'phones'
49+
* 'data': 'phones'
5050
* });
5151
* // returns <Object>
5252
*/

lib/node_modules/@stdlib/datasets/cmudict/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ var fopts = {
6464
*
6565
* @example
6666
* var data = cmudict({
67-
* 'data': 'symbols'
67+
* 'data': 'symbols'
6868
* });
6969
* // returns <Array>
7070
*/

lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var minardData = require( './data.js' );
4646
*
4747
* @example
4848
* var data = minard({
49-
* 'data': 'army'
49+
* 'data': 'army'
5050
* });
5151
* // returns <ObjectArray>
5252
*/

lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var fopts = {
6565
*
6666
* @example
6767
* var data = minard({
68-
* 'data': 'army'
68+
* 'data': 'army'
6969
* });
7070
* // returns <ObjectArray>
7171
*/

lib/node_modules/@stdlib/datasets/sotu/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var getFile = require( './get_file.js' );
5353
*
5454
* @example
5555
* var speeches = sotu({
56-
* 'name': [ 'Franklin D Roosevelt', 'William J. Clinton' ]
56+
* 'name': [ 'Franklin D Roosevelt', 'William J. Clinton' ]
5757
* });
5858
* // returns <ObjectArray>
5959
*/

0 commit comments

Comments
 (0)