From a7f9477e954bcc271251abbf4f59f27588d31dd3 Mon Sep 17 00:00:00 2001 From: esplo Date: Tue, 19 Feb 2019 00:30:54 +0900 Subject: [PATCH] fix typo: 'can used' -> 'can be used' (#559) --- blog/content/second-edition/posts/03-vga-text-buffer/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e02ee786..7bd9a9fa 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 @@ -414,7 +414,7 @@ impl Writer { This method clears a row by overwriting all of its characters with a space character. ## A Global Interface -To provide a global writer that can used as an interface from other modules without carrying a `Writer` instance around, we try to create a static `WRITER`: +To provide a global writer that can be used as an interface from other modules without carrying a `Writer` instance around, we try to create a static `WRITER`: ```rust // in src/vga_buffer.rs