summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-07-13 21:20:54 +0000
committerLex Spoon <lex@lexspoon.org>2007-07-13 21:20:54 +0000
commitfcf17f5bec6a8caf83384f8dbecda12fa0363e7b (patch)
tree4c529672b8690149457bf49b9ae775d82b4c867e
parent7e617efa8fb2a2f04672f1aa77430535a4c89d3e (diff)
downloadscala-fcf17f5bec6a8caf83384f8dbecda12fa0363e7b.tar.gz
scala-fcf17f5bec6a8caf83384f8dbecda12fa0363e7b.tar.bz2
scala-fcf17f5bec6a8caf83384f8dbecda12fa0363e7b.zip
minor tweak to the message for ending multi-lin...
minor tweak to the message for ending multi-line input early
-rw-r--r--src/compiler/scala/tools/nsc/InterpreterLoop.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/InterpreterLoop.scala b/src/compiler/scala/tools/nsc/InterpreterLoop.scala
index 3d587d7279..1a9afe6fa7 100644
--- a/src/compiler/scala/tools/nsc/InterpreterLoop.scala
+++ b/src/compiler/scala/tools/nsc/InterpreterLoop.scala
@@ -243,7 +243,7 @@ class InterpreterLoop(in0: BufferedReader, out: PrintWriter) {
case IR.Error => None
case IR.Incomplete =>
if (interactive && code.endsWith("\n\n")) {
- out.println("Two blank lines seen. Aborting this expression.")
+ out.println("You typed two blank lines. Starting a new command.")
None
} else {
if (interactive) {