Skip to content

Commit d993628

Browse files
committed
docs: apply suggestion
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - 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 8e4af09 commit d993628

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-sincos/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

22
{{alias}}( x, y, out, stride, offset )
33
Simultaneously computes the sine and cosine of an angle measured in
4-
radians on the interval [-π/4, π/4].
4+
radians within the interval [-π/4, π/4] and stores the results in a
5+
provided output array.
56

67
Parameters
78
----------

lib/node_modules/@stdlib/math/base/special/kernel-sincos/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Simultaneously computes the sine and cosine of an angle measured in radians on the interval `[-π/4, π/4]`.
22+
* Simultaneously computes the sine and cosine of an angle measured in radians within the interval `[-π/4, π/4]` and stores the results in a provided output array.
2323
*
2424
* @param x - input value (in radians, assumed to be bounded by `~π/4` in magnitude)
2525
* @param y - tail of `x`

lib/node_modules/@stdlib/math/base/special/kernel-sincos/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var S1 = -1.66666666666666324348e-01; // 0xBFC55555, 0x55555549
4848
// MAIN //
4949

5050
/**
51-
* Simultaneously computes the sine and cosine of an angle measured in radians on the interval \\( \approx \[-\pi/4, \pi/4\] \\) (except for \\(-0\\)), where \\( \pi/4 \approx 0.7854 \\).
51+
* Simultaneously computes the sine and cosine of an angle measured in radians within the interval \\( \approx \[-\pi/4, \pi/4\] \\) (except for \\(-0\\)), where \\( \pi/4 \approx 0.7854 \\), and stores the results in a provided output array.
5252
*
5353
* @param {number} x - input value (in radians, assumed to be bounded by `~π/4` in magnitude)
5454
* @param {number} y - tail of `x`

0 commit comments

Comments
 (0)