From ec9d79681a77a283607c2a061e650e52bc5895aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hinrik=20=C3=96rn=20Sigur=C3=B0sson?= Date: Tue, 6 Jun 2023 13:12:20 +0200 Subject: [PATCH] Small grammar fix in Double Buffer chapter --- book/double-buffer.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/double-buffer.markdown b/book/double-buffer.markdown index 6e0ec6fa..fe01755e 100644 --- a/book/double-buffer.markdown +++ b/book/double-buffer.markdown @@ -239,7 +239,7 @@ to expose the raw array of memory holding the pixel data. We won't see this in the example, but the video driver will call that function frequently to stream memory from the buffer onto the screen. -We wrap this raw buffer in a `Scene` class. It's job here is to render something +We wrap this raw buffer in a `Scene` class. Its job here is to render something by making a bunch of `draw()` calls on its buffer: