Skip to content

Commit 78e7c7b

Browse files
committed
Whitespace fixes.
1 parent 748b0a2 commit 78e7c7b

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

compiler/rustc_session/src/options.rs

+6-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use crate::config::*;
2-
32
use crate::search_paths::SearchPath;
43
use crate::utils::NativeLib;
54
use crate::{lint, EarlyDiagCtxt};
@@ -8,20 +7,17 @@ use rustc_data_structures::profiling::TimePassesFormat;
87
use rustc_data_structures::stable_hasher::Hash64;
98
use rustc_errors::ColorConfig;
109
use rustc_errors::{LanguageIdentifier, TerminalUrl};
10+
use rustc_feature::UnstableFeatures;
11+
use rustc_span::edition::Edition;
12+
use rustc_span::RealFileName;
13+
use rustc_span::SourceFileHashAlgorithm;
1114
use rustc_target::spec::{
1215
CodeModel, LinkerFlavorCli, MergeFunctions, PanicStrategy, SanitizerSet, WasmCAbi,
1316
};
1417
use rustc_target::spec::{
1518
RelocModel, RelroLevel, SplitDebuginfo, StackProtector, TargetTriple, TlsModel,
1619
};
17-
18-
use rustc_feature::UnstableFeatures;
19-
use rustc_span::edition::Edition;
20-
use rustc_span::RealFileName;
21-
use rustc_span::SourceFileHashAlgorithm;
22-
2320
use std::collections::BTreeMap;
24-
2521
use std::hash::{DefaultHasher, Hasher};
2622
use std::num::{IntErrorKind, NonZero};
2723
use std::path::PathBuf;
@@ -118,8 +114,8 @@ top_level_options!(
118114
/// incremental compilation cache before proceeding.
119115
///
120116
/// - `[TRACKED_NO_CRATE_HASH]`
121-
/// Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that only
122-
/// affect the incremental cache.
117+
/// Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that
118+
/// only affect the incremental cache.
123119
///
124120
/// - `[UNTRACKED]`
125121
/// Incremental compilation is not influenced by this option.

0 commit comments

Comments
 (0)