Skip to content

Commit a1a1225

Browse files
Merge pull request #165 from inkydragon/doc
doc: fix doc style and link
2 parents de15cbc + 2ef8013 commit a1a1225

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

docs/src/index.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Math with 85+ accurate bits.
44
#### Extended precision float and complex types
55

6-
- N.B. `Double64` is the most performant type <sup>[β](#involvement)</sup>
6+
- N.B. `Double64` is the most performant type [^β]
77

88
----
99

@@ -136,12 +136,10 @@ Usage questions can be posted on the [Julia Discourse forum](https://discourse.j
136136

137137
## Contributions
138138

139-
Contributions are very welcome, as are feature requests and suggestions. Please open an [issue](https://github.com/JuliaMath/DoubleFloats.jl/issues) if you encounter any problems. The [contributing page](https://juliamath.github.io/DoubleFloats.jl/latest/man/contributing/) has a few guidelines that should be followed when opening pull requests.
139+
Contributions are very welcome, as are feature requests and suggestions. Please open an [issue](https://github.com/JuliaMath/DoubleFloats.jl/issues) if you encounter any problems. The [contributing page](https://juliamath.github.io/DoubleFloats.jl/latest/#Contributions) has a few guidelines that should be followed when opening pull requests.
140140

141141
----
142142

143-
<a name="involvement">β</a>: If you want to get involved with moving `Double32` performance forward, great. I would provide guidance. Otherwise, for most purposes you are better off using `Float64` than `Double32` (`Float64` has more significant bits, wider exponent range, and is much faster).
143+
[^β]: If you want to get involved with moving `Double32` performance forward, great. I would provide guidance. Otherwise, for most purposes you are better off using `Float64` than `Double32` (`Float64` has more significant bits, wider exponent range, and is much faster).
144144

145145
----
146-
147-

docs/src/linearalgebra.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using DoubleFloats, LinearAlgebra
1414
n = 25
1515
vector = rand(Double64, n)
1616
matrix = reshape(rand(Double64,n*n),n,n)
17-
17+
```
1818

1919
## Matrix Predicates
2020

@@ -54,5 +54,3 @@ matrix = reshape(rand(Double64,n*n),n,n)
5454
- `asinh`, `acosh`, `atanh`, `acsch`, `asech`, `acoth`
5555

5656
- matrixfunction(function, matrix)
57-
58-

0 commit comments

Comments
 (0)