Skip to content

Commit 766cfe1

Browse files
committed
style: run rustfmt
1 parent 66acdf9 commit 766cfe1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/gemset.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ impl Gemset {
6868
// Do the same for the PATH env variable for binaries
6969
env_map
7070
.entry("PATH".to_string())
71-
.and_modify(|path| *path = format!("{}:{}", path, self.gem_home.join("bin").display()))
71+
.and_modify(|path| {
72+
*path = format!("{}:{}", path, self.gem_home.join("bin").display())
73+
})
7274
.or_insert(self.gem_home.join("bin").display().to_string());
7375

7476
env_map.into_iter().collect()

0 commit comments

Comments
 (0)