We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0250a commit 45612a4Copy full SHA for 45612a4
1 file changed
src/content.rs
@@ -102,7 +102,7 @@ impl<'a> Operation<'a> {
102
#[inline]
103
pub fn obj(&mut self) -> Obj<'_> {
104
// In case we are writing the first object, we want a newline to separate it from
105
- // previous operations. Otherwise, a space is sufficient.
+ // previous operations (looks nicer). Otherwise, a space is sufficient.
106
let pad_byte = if self.first { b'\n' } else { b' ' };
107
108
// Similarly to how chunks are handled, we always add padding when pretty-writing
0 commit comments