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.
2 parents 71367e7 + 8c01c52 commit d646abdCopy full SHA for d646abd
2 files changed
src/chunk.rs
@@ -55,7 +55,6 @@ impl Chunk {
55
pub fn with_settings(settings: Settings) -> Self {
56
let mut chunk = Self::new();
57
chunk.settings = settings;
58
-
59
chunk
60
}
61
src/content.rs
@@ -124,7 +124,7 @@ impl Drop for Operation<'_> {
124
fn drop(&mut self) {
125
let pad_byte = if self.first { b'\n' } else { b' ' };
126
127
- // For example, in case we previously wrote a BT operator and then a [] operand in the
+ // For example, in case we previously wrote a BT operator and then a `[]` operand in the
128
// next operation, we don't need to pad them.
129
if (self.settings.pretty
130
|| self.buf.last().is_some_and(|b| !is_delimiter_character(*b)))
0 commit comments