diff --git a/blog/content/second-edition/posts/03-vga-text-buffer/index.md b/blog/content/second-edition/posts/03-vga-text-buffer/index.md index f7aedba6..0bbf92c7 100644 --- a/blog/content/second-edition/posts/03-vga-text-buffer/index.md +++ b/blog/content/second-edition/posts/03-vga-text-buffer/index.md @@ -339,7 +339,7 @@ impl Writer { self.buffer.chars[row][col].write(ScreenChar { ascii_character: byte, - color_code: color_code, + color_code, }); ... }