fmt · rust-lang/rust@488dd9b (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 488dd9b
File tree
1 file changed
lines changed
- src/tools/compiletest/src
1 file changed
lines changed
Lines changed: 1 addition & 4 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -448,10 +448,7 @@ impl Config { | ||
448 | 448 | } |
449 | 449 | |
450 | 450 | pub fn git_config(&self) -> GitConfig<'_> { |
451 | -GitConfig { | |
452 | -git_repository: &self.git_repository, | |
453 | -nightly_branch: &self.nightly_branch, | |
454 | -} | |
451 | +GitConfig { git_repository: &self.git_repository, nightly_branch: &self.nightly_branch } | |
455 | 452 | } |
456 | 453 | } |
457 | 454 |