@@ -136,23 +136,23 @@ macro_rules! default_impl {
136
136
}
137
137
}
138
138
139
- default_impl ! { ( ) , ( ) , "Defaults to `()`" }
140
- default_impl ! { bool , false , "Defaults to `false`" }
141
- default_impl ! { char , '\x00' , "Defaults to `\\ x00`" }
139
+ default_impl ! { ( ) , ( ) , "Returns the default value of `()`" }
140
+ default_impl ! { bool , false , "Returns the default value of `false`" }
141
+ default_impl ! { char , '\x00' , "Returns the default value of `\\ x00`" }
142
142
143
- default_impl ! { usize , 0 , "Defaults to `0`" }
144
- default_impl ! { u8 , 0 , "Defaults to `0`" }
145
- default_impl ! { u16 , 0 , "Defaults to `0`" }
146
- default_impl ! { u32 , 0 , "Defaults to `0`" }
147
- default_impl ! { u64 , 0 , "Defaults to `0`" }
148
- default_impl ! { u128 , 0 , "Defaults to `0`" }
143
+ default_impl ! { usize , 0 , "Returns the default value of `0`" }
144
+ default_impl ! { u8 , 0 , "Returns the default value of `0`" }
145
+ default_impl ! { u16 , 0 , "Returns the default value of `0`" }
146
+ default_impl ! { u32 , 0 , "Returns the default value of `0`" }
147
+ default_impl ! { u64 , 0 , "Returns the default value of `0`" }
148
+ default_impl ! { u128 , 0 , "Returns the default value of `0`" }
149
149
150
- default_impl ! { isize , 0 , "Defaults to `0`" }
151
- default_impl ! { i8 , 0 , "Defaults to `0`" }
152
- default_impl ! { i16 , 0 , "Defaults to `0`" }
153
- default_impl ! { i32 , 0 , "Defaults to `0`" }
154
- default_impl ! { i64 , 0 , "Defaults to `0`" }
155
- default_impl ! { i128 , 0 , "Defaults to `0`" }
150
+ default_impl ! { isize , 0 , "Returns the default value of `0`" }
151
+ default_impl ! { i8 , 0 , "Returns the default value of `0`" }
152
+ default_impl ! { i16 , 0 , "Returns the default value of `0`" }
153
+ default_impl ! { i32 , 0 , "Returns the default value of `0`" }
154
+ default_impl ! { i64 , 0 , "Returns the default value of `0`" }
155
+ default_impl ! { i128 , 0 , "Returns the default value of `0`" }
156
156
157
- default_impl ! { f32 , 0.0f32 , "Defaults to `0.0`" }
158
- default_impl ! { f64 , 0.0f64 , "Defaults to `0.0`" }
157
+ default_impl ! { f32 , 0.0f32 , "Returns the default value of `0.0`" }
158
+ default_impl ! { f64 , 0.0f64 , "Returns the default value of `0.0`" }
0 commit comments