Skip to content

Commit 7886ef0

Browse files
committed
Rename file
1 parent 7aae554 commit 7886ef0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

FAQ.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Despite the disadvantages articulated above, this project __does__ include Node.
174174
1. [ECMA-262][ecma-262] does not mandate specific algorithms (only recommends `libm`). Accordingly, JavaScript implementors are free to choose any algorithm, which means that numeric computation results often differ across environments. This renders the standard JavaScript Math library not amenable to reproducible computation.
175175
1. [ECMA-262][ecma-262] does not require a minimum [precision][mdn-math]. As a result, JavaScript implementors make non-transparent trade-offs between speed and accuracy, frequently favoring speed above all else. While traditional web applications may not require highly accurate Math results, many numeric computation applications do. And because the implementations are not transparent, debugging accuracy issues in numeric computation applications which use Math built-ins is considerably more difficult.
176176
1. Because built-in Math functions are implementation dependent, numeric computation applications are __not__ portable. By creating a set of standard Math implementations, we ensure that results on one platform are reproducible on every other platform.
177-
1. Built-in math functions frequently have bugs (see [docs/native_math_bugs.md][native-math-bugs]).
177+
1. Built-in math functions frequently have bugs (see [docs/built_in_math_bugs.md][built-in-math-bugs]).
178178
1. Built-in math functions are often buried deep in compiler code and written in languages other than JavaScript. By implementing Math functions purely in JavaScript, the hope is that the underlying algorithms are more transparent, approachable, forkable, and debuggable.
179179

180180
<!-- </faq-question> -->
@@ -643,7 +643,7 @@ See the [contributing guide][contributing-guide].
643643
[mdn-web-workers]: https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker
644644
[mdn-transferable-objects]: https://developer.mozilla.org/en-US/docs/Web/API/Transferable
645645

646-
[native-math-bugs]: https://github.com/stdlib-js/stdlib/blob/develop/docs/native_math_bugs.md
646+
[built-in-math-bugs]: https://github.com/stdlib-js/stdlib/blob/develop/docs/built_in_math_bugs.md
647647
[contributing-guide]: https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md
648648

649649
[wasm]: https://github.com/WebAssembly/spec/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bugs
22

3-
> Bugs in the native (built-in) `Math` namespace.
3+
> Bugs in the built-in `Math` namespace.
44
55
* [Sine and cosine in V8][@bug:v8:3006]
66
* [Trigonometric functions in V8][@bug:chromium:320097]

0 commit comments

Comments
 (0)