Skip to content

Commit d646abd

Browse files
committed
Merge remote-tracking branch 'mine/compact' into compact
# Conflicts: # src/chunk.rs
2 parents 71367e7 + 8c01c52 commit d646abd

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/chunk.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ impl Chunk {
5555
pub fn with_settings(settings: Settings) -> Self {
5656
let mut chunk = Self::new();
5757
chunk.settings = settings;
58-
5958
chunk
6059
}
6160

src/content.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl Drop for Operation<'_> {
124124
fn drop(&mut self) {
125125
let pad_byte = if self.first { b'\n' } else { b' ' };
126126

127-
// For example, in case we previously wrote a BT operator and then a [] operand in the
127+
// For example, in case we previously wrote a BT operator and then a `[]` operand in the
128128
// next operation, we don't need to pad them.
129129
if (self.settings.pretty
130130
|| self.buf.last().is_some_and(|b| !is_delimiter_character(*b)))

0 commit comments

Comments
 (0)