Skip to content

Commit 1ae2110

Browse files
committed
fix: fixes a trait that's marked private accidentlly, but should be crate internal public
1 parent 10ca4d1 commit 1ae2110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/osstringext.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::ffi::OsStr;
55
use std::os::unix::ffi::OsStrExt;
66

77
#[cfg(target_os = "windows")]
8-
trait OsStrExt3 {
8+
pub trait OsStrExt3 {
99
fn from_bytes(b: &[u8]) -> &Self;
1010
fn as_bytes(&self) -> &[u8];
1111
}

0 commit comments

Comments
 (0)