Skip to content

Commit 24c988a

Browse files
committed
Remove unnecessary &s
1 parent 07e6eb8 commit 24c988a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/book/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ impl MDBook {
264264
index.write_all(theme::INDEX)?;
265265

266266
// toc.hbs
267-
let mut toc = File::create(&themedir.join("toc.hbs"))?;
267+
let mut toc = File::create(themedir.join("toc.hbs"))?;
268268
toc.write_all(theme::TOC)?;
269269

270270
// book.css

0 commit comments

Comments
 (0)