Skip to content

Commit

Permalink
fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-jiang committed Jan 14, 2025
1 parent e37a2f3 commit b05ef55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vector-buffers/src/variants/disk_v2/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ where
if self.ledger.is_writer_done() {
let total_buffer_size = self.ledger.get_total_buffer_size();
if total_buffer_size == 0 {
debug!("buffer writer is done and buffer is empty")
debug!("buffer writer is done and buffer is empty");
return Ok(None);
}
}
Expand Down

0 comments on commit b05ef55

Please sign in to comment.