Fix broken doctest in src/core/utils/debug.rs

This commit is contained in:
Alexandru Scvorțov
2025-09-03 18:18:53 +01:00
committed by Jason Volk
parent a1677f05d3
commit 804257eb52

View File

@@ -28,7 +28,7 @@ impl<T: fmt::Debug> fmt::Debug for TruncatedSlice<'_, T> {
/// use tuwunel_core::utils::debug::slice_truncated;
///
/// #[tracing::instrument(fields(foos = slice_truncated(foos, 42)))]
/// fn bar(foos: &[&str]);
/// fn bar(foos: &[&str]) {}
/// ```
pub fn slice_truncated<T: fmt::Debug>(
slice: &[T],