Fix some rustdoc warnings and a typo in FLOAT's docs

Unfortunately, I can't fix the 2 remaining warnings.
This commit is contained in:
wackbyte
2021-10-21 22:43:30 -04:00
committed by Stephen Chung
parent 8a7912a901
commit 9f0347df9f
2 changed files with 3 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ pub type INT = i32;
/// The system floating-point type. It is defined as [`f64`].
/// Not available under `no_float`.
///
/// If the `f32_float` feature is enabled, this will be [`i32`] instead.
/// If the `f32_float` feature is enabled, this will be [`f32`] instead.
#[cfg(not(feature = "no_float"))]
#[cfg(not(feature = "f32_float"))]
pub type FLOAT = f64;