Skip to content

Commit

Permalink
Fix broken link to built-in-math-bugs.md (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite authored and kgryte committed Aug 7, 2018
1 parent d7217bf commit e3937e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Despite the disadvantages articulated above, this project **does** include Node.
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.
2. [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.
3. 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.
4. Built-in math functions frequently have bugs (see [docs/built_in_math_bugs.md][built-in-math-bugs]).
4. Built-in math functions frequently have bugs (see [built_in_math_bugs.md][built-in-math-bugs]).
5. 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.

<!-- </faq-question> -->
Expand Down Expand Up @@ -790,7 +790,7 @@ See the [contributing guide][contributing-guide].

[mdn-transferable-objects]: https://developer.mozilla.org/en-US/docs/Web/API/Transferable

[built-in-math-bugs]: https://github.com/stdlib-js/stdlib/blob/develop/docs/built_in_math_bugs.md
[built-in-math-bugs]: https://github.com/stdlib-js/stdlib/blob/develop/docs/misc/built_in_math_bugs.md

[contributing-guide]: https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md

Expand Down

0 comments on commit e3937e2

Please sign in to comment.