Skip to content

Commit 45612a4

Browse files
committed
Adapt comment
1 parent 2f0250a commit 45612a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl<'a> Operation<'a> {
102102
#[inline]
103103
pub fn obj(&mut self) -> Obj<'_> {
104104
// In case we are writing the first object, we want a newline to separate it from
105-
// previous operations. Otherwise, a space is sufficient.
105+
// previous operations (looks nicer). Otherwise, a space is sufficient.
106106
let pad_byte = if self.first { b'\n' } else { b' ' };
107107

108108
// Similarly to how chunks are handled, we always add padding when pretty-writing

0 commit comments

Comments
 (0)