@@ -1107,7 +1107,7 @@ pub unsafe trait BufMut {
1107
1107
}
1108
1108
}
1109
1109
1110
- /// Writes an IEEE754 single-precision (4 bytes) floating point number to
1110
+ /// Writes an IEEE754 single-precision (4 bytes) floating point number to
1111
1111
/// `self` in big-endian byte order.
1112
1112
///
1113
1113
/// The current position is advanced by 4.
@@ -1131,7 +1131,7 @@ pub unsafe trait BufMut {
1131
1131
self . put_u32 ( n. to_bits ( ) ) ;
1132
1132
}
1133
1133
1134
- /// Writes an IEEE754 single-precision (4 bytes) floating point number to
1134
+ /// Writes an IEEE754 single-precision (4 bytes) floating point number to
1135
1135
/// `self` in little-endian byte order.
1136
1136
///
1137
1137
/// The current position is advanced by 4.
@@ -1183,7 +1183,7 @@ pub unsafe trait BufMut {
1183
1183
self . put_u32_ne ( n. to_bits ( ) ) ;
1184
1184
}
1185
1185
1186
- /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1186
+ /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1187
1187
/// `self` in big-endian byte order.
1188
1188
///
1189
1189
/// The current position is advanced by 8.
@@ -1207,7 +1207,7 @@ pub unsafe trait BufMut {
1207
1207
self . put_u64 ( n. to_bits ( ) ) ;
1208
1208
}
1209
1209
1210
- /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1210
+ /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1211
1211
/// `self` in little-endian byte order.
1212
1212
///
1213
1213
/// The current position is advanced by 8.
@@ -1231,7 +1231,7 @@ pub unsafe trait BufMut {
1231
1231
self . put_u64_le ( n. to_bits ( ) ) ;
1232
1232
}
1233
1233
1234
- /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1234
+ /// Writes an IEEE754 double-precision (8 bytes) floating point number to
1235
1235
/// `self` in native-endian byte order.
1236
1236
///
1237
1237
/// The current position is advanced by 8.
0 commit comments