Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small grammar fix in Double Buffer chapter #377

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/double-buffer.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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:

<span name="draw"></span>
Expand Down