about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-08-15 17:32:19 -0700
committerBrian Anderson <banderson@mozilla.com>2012-08-15 17:32:19 -0700
commitaf4361379543ce89866d087b45ffc419855e13fd (patch)
treefef57f259115394d673dc2f6e598020d031baf9a /src/libsyntax/parse/parser.rs
parenta78030fbaa8d4196f7a60851aacfd9f7ed57d7db (diff)
downloadrust-af4361379543ce89866d087b45ffc419855e13fd.tar.gz
rust-af4361379543ce89866d087b45ffc419855e13fd.zip
Long lines
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 9407f904bf7..1f80eac461d 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -2581,7 +2581,7 @@ class parser {
                       match the_ctor {
                         some((_, _, _, s_first)) => {
                           self.span_note(s, #fmt("Duplicate constructor \
-                                       declaration for class %s", *class_name));
+                                     declaration for class %s", *class_name));
                            self.span_fatal(copy s_first, ~"First constructor \
                                                           declared here");
                         }
@@ -2594,7 +2594,7 @@ class parser {
                       match the_dtor {
                         some((_, _, s_first)) => {
                           self.span_note(s, #fmt("Duplicate destructor \
-                                        declaration for class %s", *class_name));
+                                     declaration for class %s", *class_name));
                           self.span_fatal(copy s_first, ~"First destructor \
                                                           declared here");
                         }