File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 115
115
if [[ -z ${Version} ]]
116
116
then
117
117
echo " No valid tag version found"
118
- echo " Rustlings will be installed using the master branch"
119
- Version=" master "
118
+ echo " Rustlings will be installed using the main branch"
119
+ Version=" main "
120
120
else
121
121
Version=" tags/${Version} "
122
122
fi
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ path = "{}.rs""#,
134
134
. expect ( "Failed to compile!" ) ;
135
135
// Due to an issue with Clippy, a cargo clean is required to catch all lints.
136
136
// See https://github.com/rust-lang/rust-clippy/issues/2604
137
- // This is already fixed on master branch. See this issue to track merging into Cargo:
137
+ // This is already fixed on Clippy's master branch. See this issue to track merging into Cargo:
138
138
// https://github.com/rust-lang/rust-clippy/issues/3837
139
139
Command :: new ( "cargo" )
140
140
. args ( & [ "clean" , "--manifest-path" , CLIPPY_CARGO_TOML_PATH ] )
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ fn main() {
132
132
println ! ( "You can also contribute your own exercises to help the greater community!" ) ;
133
133
println ! ( ) ;
134
134
println ! ( "Before reporting an issue or contributing, please read our guidelines:" ) ;
135
- println ! ( "https://github.com/rust-lang/rustlings/blob/master /CONTRIBUTING.md" ) ;
135
+ println ! ( "https://github.com/rust-lang/rustlings/blob/main /CONTRIBUTING.md" ) ;
136
136
}
137
137
138
138
if matches. subcommand_name ( ) . is_none ( ) {
You can’t perform that action at this time.
0 commit comments