Skip to content

Commit 8acfb7a

Browse files
committed
fix: skip doc tests
1 parent 3e0b7bb commit 8acfb7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/display.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
///
2121
/// # Examples
2222
///
23-
/// ```
24-
/// use crate::core::display::truncate_path;
23+
/// ```ignore
24+
/// use codeinput::core::display::truncate_path;
2525
///
2626
/// // No truncation needed
2727
/// assert_eq!(truncate_path("short.txt", 20), "short.txt");
@@ -94,8 +94,8 @@ pub(crate) fn truncate_path(path: &str, max_len: usize) -> String {
9494
///
9595
/// # Examples
9696
///
97-
/// ```
98-
/// use crate::core::display::truncate_string;
97+
/// ```ignore
98+
/// use codeinput::core::display::truncate_string;
9999
///
100100
/// // No truncation needed
101101
/// assert_eq!(truncate_string("short", 10), "short");

0 commit comments

Comments
 (0)