Remove old dbg!()

This commit is contained in:
Matthew Gordon 2025-10-30 21:49:07 -03:00
parent 529ac555ec
commit ef375f6472
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ impl TextBuffer {
if num_chars == 0 { if num_chars == 0 {
0 0
} else { } else {
dbg!(self.contents.total_lines()) self.contents.total_lines()
+ if self + if self
.contents .contents
.get_char_at_index(self.contents.total_chars() - 1) .get_char_at_index(self.contents.total_chars() - 1)