fmt · rust-lang/rust@488dd9b (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 488dd9b

File tree

1 file changed

lines changed

1 file changed

lines changed

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