about summary refs log tree commit diff
path: root/src/comp
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2010-12-12 16:37:31 -0800
committerPatrick Walton <pcwalton@mimiga.net>2010-12-12 16:37:31 -0800
commitbc5fa9bf67c8a3e5b8fc119143265ec6cbe63be9 (patch)
treea41e63d0da46541e9f9e138ddccdf76b7799a448 /src/comp
parent38ba0e691738981ef0b7302a3b03adbe264bb30d (diff)
downloadrust-bc5fa9bf67c8a3e5b8fc119143265ec6cbe63be9.tar.gz
rust-bc5fa9bf67c8a3e5b8fc119143265ec6cbe63be9.zip
rustc: "resoling" -> "resolving" typo
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/middle/resolve.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comp/middle/resolve.rs b/src/comp/middle/resolve.rs
index c68735203cb..3a488da0578 100644
--- a/src/comp/middle/resolve.rs
+++ b/src/comp/middle/resolve.rs
@@ -141,7 +141,7 @@ fn fold_expr_name(&env e, &span sp, &ast.name n,
                   &option.t[def] d, ann a) -> @ast.expr {
 
     if (_vec.len[@ast.ty](n.node.types) > 0u) {
-        e.sess.unimpl("resoling name expr with ty params");
+        e.sess.unimpl("resolving name expr with ty params");
     }
 
     auto d_ = lookup_name(e, n.node.ident);
@@ -164,13 +164,13 @@ fn fold_ty_path(&env e, &span sp, ast.path p,
     let uint len = _vec.len[ast.name](p);
     check (len != 0u);
     if (len > 1u) {
-        e.sess.unimpl("resoling path ty with >1 component");
+        e.sess.unimpl("resolving path ty with >1 component");
     }
 
     let ast.name n = p.(0);
 
     if (_vec.len[@ast.ty](n.node.types) > 0u) {
-        e.sess.unimpl("resoling path ty with ty params");
+        e.sess.unimpl("resolving path ty with ty params");
     }
 
     auto d_ = lookup_name(e, n.node.ident);