Skip to content

Commit

Permalink
chore: Move from master branch to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mokou committed Jun 14, 2020
1 parent 113cdae commit 55a9284
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ then
if [[ -z ${Version} ]]
then
echo "No valid tag version found"
echo "Rustlings will be installed using the master branch"
Version="master"
echo "Rustlings will be installed using the main branch"
Version="main"
else
Version="tags/${Version}"
fi
Expand Down
2 changes: 1 addition & 1 deletion src/exercise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ path = "{}.rs""#,
.expect("Failed to compile!");
// Due to an issue with Clippy, a cargo clean is required to catch all lints.
// See https://github.com/rust-lang/rust-clippy/issues/2604
// This is already fixed on master branch. See this issue to track merging into Cargo:
// This is already fixed on Clippy's master branch. See this issue to track merging into Cargo:
// https://github.com/rust-lang/rust-clippy/issues/3837
Command::new("cargo")
.args(&["clean", "--manifest-path", CLIPPY_CARGO_TOML_PATH])
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ fn main() {
println!("You can also contribute your own exercises to help the greater community!");
println!();
println!("Before reporting an issue or contributing, please read our guidelines:");
println!("https://github.com/rust-lang/rustlings/blob/master/CONTRIBUTING.md");
println!("https://github.com/rust-lang/rustlings/blob/main/CONTRIBUTING.md");
}

if matches.subcommand_name().is_none() {
Expand Down

0 comments on commit 55a9284

Please sign in to comment.