Skip to content

Commit 2fea03f

Browse files
committed
Fix some missed double spaces.
1 parent 0b35f44 commit 2fea03f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

library/core/src/num/dec2flt/fpu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mod fpu_precision {
2626
/// Developer's Manual (Volume 1).
2727
///
2828
/// The only field which is relevant for the following code is PC, Precision Control. This
29-
/// field determines the precision of the operations performed by the FPU. It can be set to:
29+
/// field determines the precision of the operations performed by the FPU. It can be set to:
3030
/// - 0b00, single precision i.e., 32-bits
3131
/// - 0b10, double precision i.e., 64-bits
3232
/// - 0b11, double extended precision i.e., 80-bits (default state)

library/core/src/pin.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ impl<P: DerefMut> Pin<P> {
753753
impl<'a, T: ?Sized> Pin<&'a T> {
754754
/// Constructs a new pin by mapping the interior value.
755755
///
756-
/// For example, if you wanted to get a `Pin` of a field of something,
756+
/// For example, if you wanted to get a `Pin` of a field of something,
757757
/// you could use this to get access to that field in one line of code.
758758
/// However, there are several gotchas with these "pinning projections";
759759
/// see the [`pin` module] documentation for further details on that topic.
@@ -856,7 +856,7 @@ impl<'a, T: ?Sized> Pin<&'a mut T> {
856856

857857
/// Construct a new pin by mapping the interior value.
858858
///
859-
/// For example, if you wanted to get a `Pin` of a field of something,
859+
/// For example, if you wanted to get a `Pin` of a field of something,
860860
/// you could use this to get access to that field in one line of code.
861861
/// However, there are several gotchas with these "pinning projections";
862862
/// see the [`pin` module] documentation for further details on that topic.

library/core/src/slice/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ impl<T> [T] {
12481248
ArrayChunksMut::new(self)
12491249
}
12501250

1251-
/// Returns an iterator over overlapping windows of `N` elements of a slice,
1251+
/// Returns an iterator over overlapping windows of `N` elements of a slice,
12521252
/// starting at the beginning of the slice.
12531253
///
12541254
/// This is the const generic equivalent of [`windows`].

library/std/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@ impl FileType {
15121512
}
15131513

15141514
/// Tests whether this file type represents a regular file.
1515-
/// The result is mutually exclusive to the results of
1515+
/// The result is mutually exclusive to the results of
15161516
/// [`is_dir`] and [`is_symlink`]; only zero or one of these
15171517
/// tests may pass.
15181518
///

0 commit comments

Comments
 (0)