diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-01-26 13:25:02 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-01-26 13:33:05 +1100 |
| commit | 0aef487a5c2797b34e64ddcfa3974264fbc9830b (patch) | |
| tree | 9633f80b156d69af708248edd37a0dc7d66b701e /src/libnative | |
| parent | 6516b303b5f35e81350cccdf6629766e2b0a027e (diff) | |
| download | rust-0aef487a5c2797b34e64ddcfa3974264fbc9830b.tar.gz rust-0aef487a5c2797b34e64ddcfa3974264fbc9830b.zip | |
std,extra: Make some types public and other private.
These are either returned from public functions, and really should appear in the documentation, but don't since they're private, or are implementation details that are currently public.
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnative/io/mod.rs b/src/libnative/io/mod.rs index c39c241daf7..00f4a0c099d 100644 --- a/src/libnative/io/mod.rs +++ b/src/libnative/io/mod.rs @@ -63,7 +63,7 @@ pub mod timer; mod timer_helper; -type IoResult<T> = Result<T, IoError>; +pub type IoResult<T> = Result<T, IoError>; fn unimpl() -> IoError { IoError { |
