Skip to content

Commit a3867b4

Browse files
committed
Update README.md
1 parent 41f23fc commit a3867b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ julia> cos(0.5) # Julia build-in `cos` function
7171
0.8775825618903728
7272
```
7373

74-
using the [built-in mathematics library, OpenLibm](https://github.com/JuliaLang/openlibm). The result is a floating-point number that is a very good approximation to the true value. However, we do not know if the result that Julia gives is below or above the true value, nor how far away it is.
74+
using the built-in mathematics library [OpenLibm](https://github.com/JuliaLang/openlibm). The result is a floating-point number that is a very good approximation to the true value. However, we do not know if the result that Julia gives is below or above the true value, nor how far away it is.
7575

7676
Correctly-rounded functions guarantee that when the result is not exactly representable as a floating-point number, the value returned is the **next largest floating-point number when rounding up**, or **the next smallest when rounding down**. This is equivalent to doing the calculation in infinite precision and then performing the rounding.
7777

0 commit comments

Comments
 (0)