Skip to content

Commit df82f00

Browse files
committed
docs: fix require path
--- 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 3b896f1 commit df82f00

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/ternary-loop-interchange-order

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/ternary-loop-interchange-order/README.md

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

3939
```javascript
40-
var ternaryLoopOrder = require( '@stdlib/ndarray/base/binary-loop-interchange-order' );
40+
var ternaryLoopOrder = require( '@stdlib/ndarray/base/ternary-loop-interchange-order' );
4141
```
4242

4343
#### ternaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW )
@@ -107,7 +107,7 @@ For all returned arrays, the first element corresponds to the innermost loop, an
107107
var array = require( '@stdlib/ndarray/array' );
108108
var getShape = require( '@stdlib/ndarray/shape' );
109109
var getStrides = require( '@stdlib/ndarray/strides' );
110-
var ternaryLoopOrder = require( '@stdlib/ndarray/base/binary-loop-interchange-order' );
110+
var ternaryLoopOrder = require( '@stdlib/ndarray/base/ternary-loop-interchange-order' );
111111

112112
// Create ndarrays:
113113
var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

0 commit comments

Comments
 (0)