about summary refs log tree commit diff
path: root/src/test/compile-fail/tuple-index-out-of-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/tuple-index-out-of-bounds.rs')
-rw-r--r--src/test/compile-fail/tuple-index-out-of-bounds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/tuple-index-out-of-bounds.rs b/src/test/compile-fail/tuple-index-out-of-bounds.rs
index d16f950a5d4..f9bf2746794 100644
--- a/src/test/compile-fail/tuple-index-out-of-bounds.rs
+++ b/src/test/compile-fail/tuple-index-out-of-bounds.rs
@@ -22,5 +22,5 @@ fn main() {
     tuple.0;
     tuple.1;
     tuple.2;
-    //~^ ERROR attempted out-of-bounds tuple index `2` on type `(int,int)`
+    //~^ ERROR attempted out-of-bounds tuple index `2` on type `(int, int)`
 }