aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-12-21 13:00:28 +0100
committerMartin Odersky <odersky@gmail.com>2015-12-21 13:00:28 +0100
commitea86193b042abad6eff3ae6ee6db32c68b9daf8c (patch)
treeb0a804b6806b32e61873e628bf56a47a745e6034 /src
parent8e257a63872697bd48a51ce93a0289c9f5acdfd8 (diff)
downloaddotty-ea86193b042abad6eff3ae6ee6db32c68b9daf8c.tar.gz
dotty-ea86193b042abad6eff3ae6ee6db32c68b9daf8c.tar.bz2
dotty-ea86193b042abad6eff3ae6ee6db32c68b9daf8c.zip
Change name of setting: -YshowVarBounds -> -Yshow-var-bounds
Diffstat (limited to 'src')
-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 b1f6ca61a..0c381c077 100644
--- a/src/dotty/tools/dotc/config/ScalaSettings.scala
+++ b/src/dotty/tools/dotc/config/ScalaSettings.scala
@@ -173,7 +173,7 @@ class ScalaSettings extends Settings.SettingGroup {
val Ypatmatdebug = BooleanSetting("-Ypatmat-debug", "Trace pattern matching translation.")
val Yexplainlowlevel = BooleanSetting("-Yexplain-lowlevel", "When explaining type errors, show types at a lower level.")
val YnoDoubleBindings = BooleanSetting("-Yno-double-bindings", "Assert no namedtype is bound twice (should be enabled only if program is error-free).")
- val YshowVarBounds = BooleanSetting("-YshowVarBounds", "Print type variables with their bounds")
+ val YshowVarBounds = BooleanSetting("-Yshow-var-bounds", "Print type variables with their bounds")
val optimise = BooleanSetting("-optimise", "Generates faster bytecode by applying optimisations to the program") withAbbreviation "-optimize"