Skip to content

Commit f754c0c

Browse files
committed
format
1 parent 9f0ddd9 commit f754c0c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/base.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl StaticNative for LittleEndian {
4949

5050
/// General trait for types that can
5151
/// serialize and deserialize bytes in some byte order.
52-
///
52+
///
5353
/// The trait roughly resembles [`byteorder::ByteOrder`],
5454
/// with the exception that it is implemented for material types,
5555
/// which are also `Copy`,
@@ -680,7 +680,7 @@ where
680680
/// the information of whether to read or write data
681681
/// in Little Endian or in Big Endian
682682
/// is resolved at run time by observing this value.
683-
///
683+
///
684684
/// Using this type as the generic endianness type `E` in a `ByteOrdered`
685685
/// is useful when this information can only be retrieved
686686
/// from a source that is unknown to the compiler.

src/wrap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ where
175175
/// this function is only relevant when
176176
/// `E` is a run-time defined byte order
177177
/// (see [`Endianness`]).
178-
///
178+
///
179179
/// [`Endianness`]: ../base/struct.Endianness.html
180180
#[inline]
181181
pub fn set_endianness(&mut self, endianness: E) {
182182
self.endianness = endianness;
183183
}
184-
184+
185185
/// Changes the assumed byte order of the reader or writer to
186186
/// little endian.
187187
#[inline]

0 commit comments

Comments
 (0)