Skip to content

Commit 66112fb

Browse files
committed
uucore: mark comment as rustdoc
1 parent cc420a6 commit 66112fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/uucore/src/lib/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ pub fn read_yes() -> bool {
222222
}
223223
}
224224

225-
// Helper function for processing delimiter values (which could be non UTF-8)
226-
// It converts OsString to &[u8] for unix targets only
227-
// On non-unix (i.e. Windows) it will just return an error if delimiter value is not UTF-8
225+
/// Helper function for processing delimiter values (which could be non UTF-8)
226+
/// It converts OsString to &[u8] for unix targets only
227+
/// On non-unix (i.e. Windows) it will just return an error if delimiter value is not UTF-8
228228
pub fn os_str_as_bytes(os_string: &OsStr) -> mods::error::UResult<&[u8]> {
229229
#[cfg(unix)]
230230
let bytes = os_string.as_bytes();

0 commit comments

Comments
 (0)