8000 Fix grammatical mistakes in documentation by Adithyan-cb · Pull Request #3951 · pygame/pygame · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix grammatical mistakes in documentation #3951

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” 8000 , 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

Merged
merged 1 commit into from
Jul 16, 2023
Merged
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
6 changes: 3 additions & 3 deletions docs/reST/ref/rect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

Pygame uses Rect objects to store and manipulate rectangular areas. A Rect
can be created from a combination of left, top, width, and height values.
Rects can also be created from python objects that are already a Rect or
Rects can also be created from Python objects that are already a Rect or
have an attribute named "rect".

Any pygame function that requires a Rect argument also accepts any of these
Any Pygame function that requires a Rect argument also accepts any of these
values to construct a Rect. This makes it easier to create Rects on the fly
as arguments to functions.
as arguments for functions.

The Rect functions that change the position or size of a Rect return a new
copy of the Rect with the affected changes. The original Rect is not
Expand Down
0