Skip to content

Commit 7fea207

Browse files
committed
Negate description of negated option
1 parent 640e0a8 commit 7fea207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/config/ScalaSettings.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ScalaSettings extends Settings.SettingGroup {
146146
val Xlink = BooleanSetting("-Xlink", "Recompile library code with the application.")
147147
val YoptPhases = PhasesSetting("-Yopt-phases", "Restrict the optimisation phases to execute under -optimise.")
148148
val YoptFuel = IntSetting("-Yopt-fuel", "Maximum number of optimisations performed under -optimise.", -1)
149-
val YnoDecodeStacktraces = BooleanSetting("-Yno-decode-stacktraces", "Show operations that triggered StackOverflows instead of printing the raw stacktraces.")
149+
val YnoDecodeStacktraces = BooleanSetting("-Yno-decode-stacktraces", "Show raw StackOverflow stacktraces, instead of decoding them into triggering operations.")
150150

151151
/** Dottydoc specific settings */
152152
val siteRoot = StringSetting(

0 commit comments

Comments
 (0)