Fix some markdown issues.

Work around some cases where the old markdown parser differs from the
new Pulldown parser for the documentation.
This commit is contained in:
Jakob Stoklund Olesen
2018-01-08 16:18:10 -08:00
parent 4afa19ddff
commit af89006b09
7 changed files with 53 additions and 49 deletions

View File

@@ -526,7 +526,7 @@ impl Ieee32 {
Ieee32(x)
}
/// Create an `Ieee32` number representing 2.0^n.
/// Create an `Ieee32` number representing `2.0^n`.
pub fn pow2<I: Into<i32>>(n: I) -> Ieee32 {
let n = n.into();
let w = 8;
@@ -578,7 +578,7 @@ impl Ieee64 {
Ieee64(x)
}
/// Create an `Ieee64` number representing 2.0^n.
/// Create an `Ieee64` number representing `2.0^n`.
pub fn pow2<I: Into<i64>>(n: I) -> Ieee64 {
let n = n.into();
let w = 11;