about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2012-08-28 20:16:21 -0700
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2012-08-28 20:16:21 -0700
commite398a72c42856de4a047a463e721a18223d67e52 (patch)
treed4d0eb55e24106173ca364a319efd62bb9b9a57a /src/libcore
parent06675caa42fc2651254a1bc65453c6e11ba1fe20 (diff)
libcore: fix a typo exporting Err.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/core.rs2
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;