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
BREAKING CHANGE: update C API name
This commit changes the name of the C API from `stdlib_base_j1` to `stdlib_base_besselj1`. This ensures that the C function name more closely matches the global namespace name and helps protect against future naming collisions. To migrate, users should update their call signatures accordingly.
PR-URL: #2777
Ref: 18bd1b5#r145258015
Ref: 18bd1b5#r145258035
Reviewed-by: Athan Reines <[email protected]>
Copy file name to clipboardexpand all lines: lib/node_modules/@stdlib/math/base/special/besselj1/lib/main.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The original C++ code and copyright notice are from the [Boost library]{@link https://github.com/boostorg/math/blob/develop/include/boost/math/special_functions/detail/bessel_j1.hpp}. The implementation has been modified for JavaScript.
21
+
* The original C++ code and copyright notice are from the [Boost library]{@link https://www.boost.org/doc/libs/1_85_0/boost/math/special_functions/detail/bessel_j1.hpp}. The implementation has been modified for JavaScript.
Copy file name to clipboardexpand all lines: lib/node_modules/@stdlib/math/base/special/besselj1/src/main.c
+4-4
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
*
19
19
* ## Notice
20
20
*
21
-
* The original C++ code and copyright notice are from the [Boost library]{@link https://github.com/boostorg/math/blob/develop/include/boost/math/special_functions/detail/bessel_j1.hpp}. The implementation has been modified for use in stdlib.
21
+
* The original C++ code and copyright notice are from the [Boost library]{@link https://www.boost.org/doc/libs/1_85_0/boost/math/special_functions/detail/bessel_j1.hpp}. The implementation has been modified for use in stdlib.
0 commit comments