aboutsummaryrefslogtreecommitdiff
path: root/crates/flycheck
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-21 09:50:24 +0100
committerAleksey Kladov <[email protected]>2020-07-21 09:50:24 +0100
commit8f3fdf33155449f2d6d35f3f05099a59b259bd42 (patch)
treef703328f6f731ec33031f209b0ebc7090af3abb4 /crates/flycheck
parenta20b8d751bb59becb19c9edbb5e3f3ffe31bbcf3 (diff)
Typo
Diffstat (limited to 'crates/flycheck')
-rw-r--r--crates/flycheck/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/flycheck/src/lib.rs b/crates/flycheck/src/lib.rs
index 6e06adaa5..ad376ad18 100644
--- a/crates/flycheck/src/lib.rs
+++ b/crates/flycheck/src/lib.rs
@@ -22,7 +22,7 @@ pub use cargo_metadata::diagnostic::{
22pub enum FlycheckConfig { 22pub enum FlycheckConfig {
23 CargoCommand { 23 CargoCommand {
24 command: String, 24 command: String,
25 target_tripple: Option<String>, 25 target_triple: Option<String>,
26 all_targets: bool, 26 all_targets: bool,
27 all_features: bool, 27 all_features: bool,
28 features: Vec<String>, 28 features: Vec<String>,
@@ -179,7 +179,7 @@ impl FlycheckActor {
179 let mut cmd = match &self.config { 179 let mut cmd = match &self.config {
180 FlycheckConfig::CargoCommand { 180 FlycheckConfig::CargoCommand {
181 command, 181 command,
182 target_tripple, 182 target_triple,
183 all_targets, 183 all_targets,
184 all_features, 184 all_features,
185 extra_args, 185 extra_args,
@@ -190,7 +190,7 @@ impl FlycheckActor {
190 cmd.args(&["--workspace", "--message-format=json", "--manifest-path"]) 190 cmd.args(&["--workspace", "--message-format=json", "--manifest-path"])
191 .arg(self.workspace_root.join("Cargo.toml")); 191 .arg(self.workspace_root.join("Cargo.toml"));
192 192
193 if let Some(target) = target_tripple { 193 if let Some(target) = target_triple {
194 cmd.args(&["--target", target.as_str()]); 194 cmd.args(&["--target", target.as_str()]);
195 } 195 }
196 if *all_targets { 196 if *all_targets {