Fix some missed double spaces.
This commit is contained in:
parent
0b35f448f8
commit
2fea03f5e6
@ -26,7 +26,7 @@ mod fpu_precision {
|
|||||||
/// Developer's Manual (Volume 1).
|
/// Developer's Manual (Volume 1).
|
||||||
///
|
///
|
||||||
/// The only field which is relevant for the following code is PC, Precision Control. This
|
/// The only field which is relevant for the following code is PC, Precision Control. This
|
||||||
/// field determines the precision of the operations performed by the FPU. It can be set to:
|
/// field determines the precision of the operations performed by the FPU. It can be set to:
|
||||||
/// - 0b00, single precision i.e., 32-bits
|
/// - 0b00, single precision i.e., 32-bits
|
||||||
/// - 0b10, double precision i.e., 64-bits
|
/// - 0b10, double precision i.e., 64-bits
|
||||||
/// - 0b11, double extended precision i.e., 80-bits (default state)
|
/// - 0b11, double extended precision i.e., 80-bits (default state)
|
||||||
|
@ -753,7 +753,7 @@ impl<P: DerefMut> Pin<P> {
|
|||||||
impl<'a, T: ?Sized> Pin<&'a T> {
|
impl<'a, T: ?Sized> Pin<&'a T> {
|
||||||
/// Constructs a new pin by mapping the interior value.
|
/// Constructs a new pin by mapping the interior value.
|
||||||
///
|
///
|
||||||
/// For example, if you wanted to get a `Pin` of a field of something,
|
/// For example, if you wanted to get a `Pin` of a field of something,
|
||||||
/// you could use this to get access to that field in one line of code.
|
/// you could use this to get access to that field in one line of code.
|
||||||
/// However, there are several gotchas with these "pinning projections";
|
/// However, there are several gotchas with these "pinning projections";
|
||||||
/// see the [`pin` module] documentation for further details on that topic.
|
/// see the [`pin` module] documentation for further details on that topic.
|
||||||
@ -856,7 +856,7 @@ impl<'a, T: ?Sized> Pin<&'a mut T> {
|
|||||||
|
|
||||||
/// Construct a new pin by mapping the interior value.
|
/// Construct a new pin by mapping the interior value.
|
||||||
///
|
///
|
||||||
/// For example, if you wanted to get a `Pin` of a field of something,
|
/// For example, if you wanted to get a `Pin` of a field of something,
|
||||||
/// you could use this to get access to that field in one line of code.
|
/// you could use this to get access to that field in one line of code.
|
||||||
/// However, there are several gotchas with these "pinning projections";
|
/// However, there are several gotchas with these "pinning projections";
|
||||||
/// see the [`pin` module] documentation for further details on that topic.
|
/// see the [`pin` module] documentation for further details on that topic.
|
||||||
|
@ -1248,7 +1248,7 @@ impl<T> [T] {
|
|||||||
ArrayChunksMut::new(self)
|
ArrayChunksMut::new(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns an iterator over overlapping windows of `N` elements of a slice,
|
/// Returns an iterator over overlapping windows of `N` elements of a slice,
|
||||||
/// starting at the beginning of the slice.
|
/// starting at the beginning of the slice.
|
||||||
///
|
///
|
||||||
/// This is the const generic equivalent of [`windows`].
|
/// This is the const generic equivalent of [`windows`].
|
||||||
|
@ -1512,7 +1512,7 @@ impl FileType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Tests whether this file type represents a regular file.
|
/// Tests whether this file type represents a regular file.
|
||||||
/// The result is mutually exclusive to the results of
|
/// The result is mutually exclusive to the results of
|
||||||
/// [`is_dir`] and [`is_symlink`]; only zero or one of these
|
/// [`is_dir`] and [`is_symlink`]; only zero or one of these
|
||||||
/// tests may pass.
|
/// tests may pass.
|
||||||
///
|
///
|
||||||
|
Loading…
x
Reference in New Issue
Block a user