Skip to content

Commit 515c70d

Browse files
fix(custom-toolchains): remove unnecessary pub modifier in component
1 parent 7043d4f commit 515c70d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dist/component/mod.rs

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)