Skip to content

Commit

Permalink
Fixed compilation lint
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Jun 5, 2020
1 parent ea522de commit 7455f10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ impl StoreOptions {
/// Gets the store for provided host target
pub fn get_store_for_target(
&self,
target: Target,
_target: Target,
) -> Result<(Store, EngineType, CompilerType)> {
bail!("You need compilers to run get a store in a specific target");
bail!("You need compilers to retrieve a store for a specific target");
}
}

Expand All @@ -395,7 +395,7 @@ impl StoreOptions {
/// Gets the store for the host target
pub fn get_store_for_target(
&self,
target: Target,
_target: Target,
) -> Result<(Store, EngineType, CompilerType)> {
bail!("No engines are enabled");
}
Expand Down

0 comments on commit 7455f10

Please sign in to comment.