@@ -249,7 +249,7 @@ impl<'a> DragValue<'a> {
249
249
/// If `twos_complement` is true, negative values will be displayed as the 2's complement representation. Otherwise
250
250
/// they will be prefixed with a '-' sign.
251
251
///
252
- /// See also: [`binary_uint `]
252
+ /// See also: [`binary `]
253
253
///
254
254
/// # Panics
255
255
///
@@ -286,7 +286,7 @@ impl<'a> DragValue<'a> {
286
286
/// If `twos_complement` is true, negative values will be displayed as the 2's complement representation. Otherwise
287
287
/// they will be prefixed with a '-' sign.
288
288
///
289
- /// See also: [`octal_uint `]
289
+ /// See also: [`octal `]
290
290
///
291
291
/// # Panics
292
292
///
@@ -301,7 +301,7 @@ impl<'a> DragValue<'a> {
301
301
pub fn octal ( self , min_width : usize , twos_complement : bool ) -> Self {
302
302
assert ! (
303
303
min_width > 0 ,
304
- "DragValue::octal_int : `min_width` must be greater than 0"
304
+ "DragValue::octal : `min_width` must be greater than 0"
305
305
) ;
306
306
if twos_complement {
307
307
self . custom_formatter ( move |n, _| format ! ( "{:0>min_width$o}" , n as i64 ) )
@@ -323,7 +323,7 @@ impl<'a> DragValue<'a> {
323
323
/// If `twos_complement` is true, negative values will be displayed as the 2's complement representation. Otherwise
324
324
/// they will be prefixed with a '-' sign.
325
325
///
326
- /// See also: [`hexadecinal_uint `]
326
+ /// See also: [`hexadecinal `]
327
327
///
328
328
/// # Panics
329
329
///
0 commit comments