File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ mod fpu_precision {
26
26
/// Developer's Manual (Volume 1).
27
27
///
28
28
/// 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:
30
30
/// - 0b00, single precision i.e., 32-bits
31
31
/// - 0b10, double precision i.e., 64-bits
32
32
/// - 0b11, double extended precision i.e., 80-bits (default state)
Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ impl<P: DerefMut> Pin<P> {
753
753
impl < ' a , T : ?Sized > Pin < & ' a T > {
754
754
/// Constructs a new pin by mapping the interior value.
755
755
///
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,
757
757
/// you could use this to get access to that field in one line of code.
758
758
/// However, there are several gotchas with these "pinning projections";
759
759
/// see the [`pin` module] documentation for further details on that topic.
@@ -856,7 +856,7 @@ impl<'a, T: ?Sized> Pin<&'a mut T> {
856
856
857
857
/// Construct a new pin by mapping the interior value.
858
858
///
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,
860
860
/// you could use this to get access to that field in one line of code.
861
861
/// However, there are several gotchas with these "pinning projections";
862
862
/// see the [`pin` module] documentation for further details on that topic.
Original file line number Diff line number Diff line change @@ -1248,7 +1248,7 @@ impl<T> [T] {
1248
1248
ArrayChunksMut :: new ( self )
1249
1249
}
1250
1250
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,
1252
1252
/// starting at the beginning of the slice.
1253
1253
///
1254
1254
/// This is the const generic equivalent of [`windows`].
Original file line number Diff line number Diff line change @@ -1512,7 +1512,7 @@ impl FileType {
1512
1512
}
1513
1513
1514
1514
/// 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
1516
1516
/// [`is_dir`] and [`is_symlink`]; only zero or one of these
1517
1517
/// tests may pass.
1518
1518
///
You can’t perform that action at this time.
0 commit comments