File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments