Skip to content

Commit 55a9284

Browse files
author
mokou
committed
chore: Move from master branch to main branch
1 parent 113cdae commit 55a9284

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ then
115115
if [[ -z ${Version} ]]
116116
then
117117
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"
120120
else
121121
Version="tags/${Version}"
122122
fi

src/exercise.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ path = "{}.rs""#,
134134
.expect("Failed to compile!");
135135
// Due to an issue with Clippy, a cargo clean is required to catch all lints.
136136
// 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:
138138
// https://github.com/rust-lang/rust-clippy/issues/3837
139139
Command::new("cargo")
140140
.args(&["clean", "--manifest-path", CLIPPY_CARGO_TOML_PATH])

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ fn main() {
132132
println!("You can also contribute your own exercises to help the greater community!");
133133
println!();
134134
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");
136136
}
137137

138138
if matches.subcommand_name().is_none() {

0 commit comments

Comments
 (0)