Skip to content

Commit

Permalink
Clearer spacing in index.md (#13733)
Browse files Browse the repository at this point in the history
Perhaps this is just personal preference but I very rarely see the use of + without spaces on either side, it's a little jarring
  • Loading branch information
btwalpole authored Mar 10, 2022
1 parent b278042 commit 4002435
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exports.bookinstance_detail = function(req, res, next) {
return next(err);
}
// Successful, so render.
res.render('bookinstance_detail', { title: 'Copy: '+bookinstance.book.title, bookinstance: bookinstance});
res.render('bookinstance_detail', { title: 'Copy: ' + bookinstance.book.title, bookinstance: bookinstance});
})

};
Expand Down

0 comments on commit 4002435

Please sign in to comment.