about summary refs log tree commit diff
path: root/compiler/rustc_session
diff options
context:
space:
mode:
authormejrs <>2022-10-24 20:52:51 +0200
committermejrs <>2022-10-24 20:52:51 +0200
commit854b3166a05916f01b6a7cb9c09fc7c8d26697ad (patch)
tree159dd54e8e4f48c6ee31908766bd54c84a19ac97 /compiler/rustc_session
parent406e1dc8ebdeb509515c0c8be7cfe015c5eced30 (diff)
downloadrust-854b3166a05916f01b6a7cb9c09fc7c8d26697ad.tar.gz
rust-854b3166a05916f01b6a7cb9c09fc7c8d26697ad.zip
Address some comments
Diffstat (limited to 'compiler/rustc_session')
-rw-r--r--compiler/rustc_session/src/options.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index af290931850..5327dea8804 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -1585,8 +1585,8 @@ options! {
         "choose the TLS model to use (`rustc --print tls-models` for details)"),
     trace_macros: bool = (false, parse_bool, [UNTRACKED],
         "for every macro invocation, print its name and arguments (default: no)"),
-    track_diagnostics: bool = (false, parse_bool, [TRACKED],
-        "Tracks where in rustc a diagnostic was emitted"),
+    track_diagnostics: bool = (false, parse_bool, [UNTRACKED],
+        "tracks where in rustc a diagnostic was emitted"),
     // Diagnostics are considered side-effects of a query (see `QuerySideEffects`) and are saved
     // alongside query results and changes to translation options can affect diagnostics - so
     // translation options should be tracked.