about summary refs log tree commit diff
path: root/compiler/rustc_session/src/options.rs
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2025-03-14 18:36:30 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2025-03-14 18:39:27 +0100
commit453b51a65ab00939d2dce3de24ce38489b5c7eb6 (patch)
treea3339fa266b7b0a56283c7e49e2b03ac0b427579 /compiler/rustc_session/src/options.rs
parent3ca5220114c1e690d876aa46c3aa0f6ec594b9c5 (diff)
downloadrust-453b51a65ab00939d2dce3de24ce38489b5c7eb6.tar.gz
rust-453b51a65ab00939d2dce3de24ce38489b5c7eb6.zip
Rename `QuerySideEffects` to `QuerySideEffect`
Diffstat (limited to 'compiler/rustc_session/src/options.rs')
-rw-r--r--compiler/rustc_session/src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index 804b46a9bec..8d05cd14e38 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -2525,7 +2525,7 @@ written to standard error output)"),
         "for every macro invocation, print its name and arguments (default: no)"),
     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
+    // Diagnostics are considered side-effects of a query (see `QuerySideEffect`) and are saved
     // alongside query results and changes to translation options can affect diagnostics - so
     // translation options should be tracked.
     translate_additional_ftl: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],