Skip to content
  • Sponsor stdlib-js/array

  • Notifications You must be signed in to change notification settings
  • Fork 0

Commit f853c7d

Browse files
committedDec 17, 2023
Auto-generated commit
1 parent 6247b14 commit f853c7d

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed
 

‎.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
# Files #
2020
#########
21+
CITATION.cff
2122
CHANGELOG.md
2223
CODE_OF_CONDUCT.md
2324
CONTRIBUTING.md

‎SECURITY.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Security
2+
3+
> Policy for reporting security vulnerabilities.
4+
5+
See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).

‎complex64/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ setReadOnly( Complex64Array, 'of', function of() {
560560
* @type {Function}
561561
* @param {integer} idx - element index
562562
* @throws {TypeError} `this` must be a complex number array
563-
* @throws {TypeError} must provide a integer
563+
* @throws {TypeError} must provide an integer
564564
* @returns {(Complex64|void)} array element
565565
*
566566
* @example

‎complex64/test/test.at.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ tape( 'the method throws an error if invoked with a `this` context which is not
7373
}
7474
});
7575

76-
tape( 'the method throws an error if provided an index argument which is not a integer', function test( t ) {
76+
tape( 'the method throws an error if provided an index argument which is not an integer', function test( t ) {
7777
var values;
7878
var arr;
7979
var i;

‎dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.