Skip to content

Commit 6360b0c

Browse files
kgrytenakul-krishnakumar
authored andcommitted
docs: update examples
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8d76690 commit 6360b0c

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

lib/node_modules/@stdlib/stats/max-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ var opts = {
210210
var y = maxBy( x, opts, clbk );
211211
// returns <ndarray>
212212

213-
var dt = getDType( y );
213+
var dt = String( getDType( y ) );
214214
// returns 'float64'
215215
```
216216

lib/node_modules/@stdlib/stats/max/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = max( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

lib/node_modules/@stdlib/stats/maxabs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = maxabs( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

lib/node_modules/@stdlib/stats/mean/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var y = mean( x, {
173173
});
174174
// returns <ndarray>
175175

176-
var dt = getDType( y );
176+
var dt = String( getDType( y ) );
177177
// returns 'float64'
178178
```
179179

lib/node_modules/@stdlib/stats/min-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ var opts = {
210210
var y = minBy( x, opts, clbk );
211211
// returns <ndarray>
212212

213-
var dt = getDType( y );
213+
var dt = String( getDType( y ) );
214214
// returns 'float64'
215215
```
216216

lib/node_modules/@stdlib/stats/min/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = min( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

lib/node_modules/@stdlib/stats/minabs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = minabs( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

lib/node_modules/@stdlib/stats/nanmax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = nanmax( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

lib/node_modules/@stdlib/stats/nanmean/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var y = nanmean( x, {
173173
});
174174
// returns <ndarray>
175175

176-
var dt = getDType( y );
176+
var dt = String( getDType( y ) );
177177
// returns 'float64'
178178
```
179179

lib/node_modules/@stdlib/stats/nanmin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var y = nanmin( x, {
152152
});
153153
// returns <ndarray>
154154

155-
var dt = getDType( y );
155+
var dt = String( getDType( y ) );
156156
// returns 'float64'
157157
```
158158

0 commit comments

Comments
 (0)