From b2483cb3c351a88031a7a58d4fed00ac9af2d001 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sat, 8 Aug 2020 23:17:49 -0500 Subject: [PATCH] tests ~ (sub-crate/od) fix/remove inadvertent doc test (by using `ignore`) --- src/uu/od/src/output_info.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uu/od/src/output_info.rs b/src/uu/od/src/output_info.rs index b1f25e31f..a204fa36e 100644 --- a/src/uu/od/src/output_info.rs +++ b/src/uu/od/src/output_info.rs @@ -99,7 +99,7 @@ impl OutputInfo { /// /// Multiple representations of the same data, will be right-aligned for easy reading. /// For example a 64 bit octal and a 32-bit decimal with a 16-bit hexadecimal looks like this: - /// ``` + /// ```ignore /// 1777777777777777777777 1777777777777777777777 /// 4294967295 4294967295 4294967295 4294967295 /// ffff ffff ffff ffff ffff ffff ffff ffff @@ -131,7 +131,7 @@ impl OutputInfo { /// /// Here is another example showing the alignment of 64-bit unsigned decimal numbers, /// 32-bit hexadecimal number, 16-bit octal numbers and 8-bit hexadecimal numbers: - /// ``` + /// ```ignore /// 18446744073709551615 18446744073709551615 /// ffffffff ffffffff ffffffff ffffffff /// 177777 177777 177777 177777 177777 177777 177777 177777