aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/ScalaSettings.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-09-16 18:23:11 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-10-10 13:25:33 +0200
commit2764609bb17dfc8691d33fcc1c70a9891af59e70 (patch)
treecbb0c188a5fc83b7d91256502e4c4f42fd5fcd26 /src/dotty/tools/dotc/config/ScalaSettings.scala
parent2b2cfe71aacb50e91d6956f0d4ee7d555537698a (diff)
downloaddotty-2764609bb17dfc8691d33fcc1c70a9891af59e70.tar.gz
dotty-2764609bb17dfc8691d33fcc1c70a9891af59e70.tar.bz2
dotty-2764609bb17dfc8691d33fcc1c70a9891af59e70.zip
Complete better structure to diagnostic messages
Diffstat (limited to 'src/dotty/tools/dotc/config/ScalaSettings.scala')
-rw-r--r--src/dotty/tools/dotc/config/ScalaSettings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/config/ScalaSettings.scala b/src/dotty/tools/dotc/config/ScalaSettings.scala
index a4daefcba..872cb0667 100644
--- a/src/dotty/tools/dotc/config/ScalaSettings.scala
+++ b/src/dotty/tools/dotc/config/ScalaSettings.scala
@@ -23,7 +23,7 @@ class ScalaSettings extends Settings.SettingGroup {
val migration = BooleanSetting("-migration", "Emit warning and location for migration issues from Scala 2.")
val encoding = StringSetting("-encoding", "encoding", "Specify character encoding used by source files.", Properties.sourceEncoding)
val explaintypes = BooleanSetting("-explaintypes", "Explain type errors in more detail.")
- val explainerrors = BooleanSetting("-explain", "Explain errors in more detail.")
+ val explain = BooleanSetting("-explain", "Explain errors in more detail.")
val feature = BooleanSetting("-feature", "Emit warning and location for usages of features that should be imported explicitly.")
val g = ChoiceSetting("-g", "level", "Set level of generated debugging info.", List("none", "source", "line", "vars", "notailcalls"), "vars")
val help = BooleanSetting("-help", "Print a synopsis of standard options")