You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ indent_style = tab
121
121
[*.{md,md.txt}]
122
122
indent_style = space
123
123
indent_size = 4
124
-
trim_trailing_whitespace = false
124
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: README.md
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -136,6 +136,17 @@ console.log( arr );
136
136
137
137
<sectionclass="related">
138
138
139
+
* * *
140
+
141
+
## See Also
142
+
143
+
- <spanclass="package-name">[`@stdlib/array-base/zeros2d`][@stdlib/array/base/zeros2d]</span><spanclass="delimiter">: </span><spanclass="description">create a zero-filled two-dimensional nested array.</span>
144
+
- <spanclass="package-name">[`@stdlib/array-base/ones`][@stdlib/array/base/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a generic array filled with ones.</span>
145
+
- <spanclass="package-name">[`@stdlib/array-base/ones3d`][@stdlib/array/base/ones3d]</span><spanclass="delimiter">: </span><spanclass="description">create a three-dimensional nested array filled with ones.</span>
146
+
- <spanclass="package-name">[`@stdlib/array-base/ones4d`][@stdlib/array/base/ones4d]</span><spanclass="delimiter">: </span><spanclass="description">create a four-dimensional nested array filled with ones.</span>
147
+
- <spanclass="package-name">[`@stdlib/array-base/ones5d`][@stdlib/array/base/ones5d]</span><spanclass="delimiter">: </span><spanclass="description">create a five-dimensional nested array filled with ones.</span>
148
+
- <spanclass="package-name">[`@stdlib/array-base/onesnd`][@stdlib/array/base/onesnd]</span><spanclass="delimiter">: </span><spanclass="description">create an n-dimensional nested array filled with ones.</span>
0 commit comments