Skip to content

Commit 6b550ec

Browse files
committed
Auto-generated commit
1 parent 2a0834a commit 6b550ec

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-06-23)
7+
## Unreleased (2025-06-24)
88

99
<section class="features">
1010

@@ -214,6 +214,8 @@ A total of 32 issues were closed in this release:
214214

215215
<details>
216216

217+
- [`f925c9c`](https://github.com/stdlib-js/stdlib/commit/f925c9cacd01012cc8a8f74eb3f45cbe69a4bbb0) - **chore:** minor clean-up _(by Philipp Burckhardt)_
218+
- [`21bfa5b`](https://github.com/stdlib-js/stdlib/commit/21bfa5b1ebed46573ed2b501de7dae2b927c4513) - **chore:** minor clean-up _(by Philipp Burckhardt)_
217219
- [`fd7b7eb`](https://github.com/stdlib-js/stdlib/commit/fd7b7eb341227a6627d70044979b5edfebd5f692) - **refactor:** use assert utility _(by Athan Reines)_
218220
- [`179f005`](https://github.com/stdlib-js/stdlib/commit/179f005163d265ff38f7571465c2514f8ccb22cf) - **fix:** use correct variable name _(by Athan Reines)_
219221
- [`74f2d2f`](https://github.com/stdlib-js/stdlib/commit/74f2d2fbf3eb548d043ef8c67c66120a67d97e17) - **refactor:** move function to file _(by Athan Reines)_

base/fancy-slice/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var gcopy = require( '@stdlib/blas/base/gcopy' ).ndarray;
2828
var format = require( '@stdlib/string/format' );
2929

3030

31-
// MODULES //
31+
// MAIN //
3232

3333
/**
3434
* Returns a shallow copy of a portion of an array.

dataview/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
{{alias}}.prototype.buffer
32-
Read-only property which returns the underyling array buffer.
32+
Read-only property which returns the underlying array buffer.
3333

3434
Examples
3535
--------

dataview/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the constructor throws an error if not provided an array buffer', opts, f
110110
}
111111
});
112112

113-
tape( 'the constructor returns a `DataView` instance having a `buffer` property, which returns the underlying an array buffer', opts, function test( t ) {
113+
tape( 'the constructor returns a `DataView` instance having a `buffer` property, which returns the underlying array buffer', opts, function test( t ) {
114114
var buf;
115115
var dv;
116116

@@ -151,7 +151,7 @@ tape( 'the constructor returns a `DataView` instance having a `byteLength` prope
151151
t.end();
152152
});
153153

154-
tape( 'the constructor returns a `DataView` instance having a `byteOffset` property, which returns the number of bytes from the view to the start of the underlying an array buffer', opts, function test( t ) {
154+
tape( 'the constructor returns a `DataView` instance having a `byteOffset` property, which returns the number of bytes from the view to the start of the underlying array buffer', opts, function test( t ) {
155155
var buf;
156156
var dv;
157157

0 commit comments

Comments
 (0)