about summary refs log tree commit diff
path: root/src/test/run-make
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-03-28 18:09:51 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-03-28 18:09:51 +0300
commit1accaa9f86002e95c1d0a677349ab033ec6dd2e2 (patch)
tree9a65dc2cb6f8a0f38639eed8fbf9902994faa3e5 /src/test/run-make
parent227b46bdede794d5c8476b810bb1c30926bd9c04 (diff)
downloadrust-1accaa9f86002e95c1d0a677349ab033ec6dd2e2.tar.gz
rust-1accaa9f86002e95c1d0a677349ab033ec6dd2e2.zip
Fix some typos
Diffstat (limited to 'src/test/run-make')
-rw-r--r--src/test/run-make/pretty-print-path-suffix/foo_method.pp2
-rw-r--r--src/test/run-make/pretty-print-path-suffix/input.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make/pretty-print-path-suffix/foo_method.pp b/src/test/run-make/pretty-print-path-suffix/foo_method.pp
index acf3f90cb0e..4879fbfe6d3 100644
--- a/src/test/run-make/pretty-print-path-suffix/foo_method.pp
+++ b/src/test/run-make/pretty-print-path-suffix/foo_method.pp
@@ -12,5 +12,5 @@
 
 
 
-fn foo_method(&self) -> &'static str { return "i am very similiar to foo."; }
+fn foo_method(&self) -> &'static str { return "i am very similar to foo."; }
 /* nest::S::foo_method */
diff --git a/src/test/run-make/pretty-print-path-suffix/input.rs b/src/test/run-make/pretty-print-path-suffix/input.rs
index 4942540126b..8ea86a94f93 100644
--- a/src/test/run-make/pretty-print-path-suffix/input.rs
+++ b/src/test/run-make/pretty-print-path-suffix/input.rs
@@ -22,7 +22,7 @@ pub mod nest {
     struct S;
     impl S {
         fn foo_method(&self) -> &'static str {
-            return "i am very similiar to foo.";
+            return "i am very similar to foo.";
         }
     }
 }