Skip to content

Commit 029cd9a

Browse files
fix(custom-toolchains): remove unnecessary pub modifier in component
1 parent f908e5c commit 029cd9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dist/component/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mod transaction;
1010
// The representation of a package, its components, and installation
1111
mod package;
1212
// The representation of *installed* components, and uninstallation
13-
pub mod components;
13+
mod components;
1414

1515
#[cfg(test)]
1616
mod tests;

src/toolchain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use crate::{
2424
config::{ActiveReason, Cfg, InstalledPath},
2525
dist::{
2626
PartialToolchainDesc, TargetTriple,
27-
component::components::{Component, Components},
27+
component::{Component, Components},
2828
prefix::InstallPrefix,
2929
},
3030
env_var, install,

0 commit comments

Comments
 (0)