diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2012-08-28 20:16:21 -0700 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2012-08-28 20:16:21 -0700 |
| commit | e398a72c42856de4a047a463e721a18223d67e52 (patch) | |
| tree | d4d0eb55e24106173ca364a319efd62bb9b9a57a /src/libcore | |
| parent | 06675caa42fc2651254a1bc65453c6e11ba1fe20 (diff) | |
libcore: fix a typo exporting Err.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/core.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/core.rs b/src/libcore/core.rs index a897e9cab7c..1aa4cd21b2f 100644 --- a/src/libcore/core.rs +++ b/src/libcore/core.rs @@ -26,7 +26,7 @@ import to_str::ToStr; export Path, WindowsPath, PosixPath, GenericPath; export Option, Some, None, unreachable; -export Result, Ok, Error; +export Result, Ok, Err; export extensions; // The following exports are the extension impls for numeric types export Num, Times, TimesIx; |
