8000 Fix typos in docs and scene by lordmauve · Pull Request #82 · lordmauve/wasabi2d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix typos in docs and scene #82

8000 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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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 docs/sound.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ stop the sound as well as query its length in seconds:
Get the duration of the sound in seconds.

You should avoid using the ``sounds`` object to play longer pieces of music.
Because the sounds sytem will fully load the music into memory before playing
Because the sounds system will fully load the music into memory before playing
it, this can use a lot of memory, as well as introducing a delay while the
music is loaded.

Expand Down
2 changes: 1 addition & 1 deletion wasabi2d/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def title(self, title):
pygame.display.set_caption(title)

def on_screenshot_requested(self, video):
"""Handle a screenshot event from the event sytem."""
"""Handle a screenshot event from the event system."""
if video:
self.toggle_recording()
else:
Expand Down
0