about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXuefeng Wu <benewu@gmail.com>2015-05-16 17:37:11 +0800
committerXuefeng Wu <benewu@gmail.com>2015-05-16 17:37:11 +0800
commit574a8cd8cc65f9a32051d475cfe1ac6be28a1cdd (patch)
treea1468ff486d8f3c6d014c9a79f4574a68a14e643
parent5cf6b025719f808b39bce33708cc96c287c37cb6 (diff)
downloadrust-574a8cd8cc65f9a32051d475cfe1ac6be28a1cdd.tar.gz
rust-574a8cd8cc65f9a32051d475cfe1ac6be28a1cdd.zip
fix trait capitalise typo in test file
-rw-r--r--src/test/compile-fail/issue-24968.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-24968.rs b/src/test/compile-fail/issue-24968.rs
index 1bef74012f0..f51b77b0ee5 100644
--- a/src/test/compile-fail/issue-24968.rs
+++ b/src/test/compile-fail/issue-24968.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 fn foo(_: Self) {
-    //~^ ERROR use of `Self` outside of an impl or Trait
+    //~^ ERROR use of `Self` outside of an impl or trait
 }
 
 fn main() {}