Merge pull request #1031 from Zen-CODE/Doc_English_Improvements_13

Small fixes to the grammar
This commit is contained in:
qua-non 2013-03-21 01:44:17 -07:00
commit 0a8a3489d3
1 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@ as an unlimited drawing board, and as a set of drawing instructions, there are
numerous different instructions you can apply (add) to your canvas, but there
is two main kind of them:
- :mod:`~kivy.graphics.context_instructions` Context instructions
- :mod:`~kivy.graphics.vertex_instructions` Vertex Instructions
- `Context instructions <:mod:~kivy.graphics.context_instructions>`_
- `Vertex Instructions <:mod:~kivy.graphics.vertex_instructions>`_
Context instructions don't draw anything, but they change the results of the
Vertex instructions.
@ -23,7 +23,7 @@ Canvasses can contain two subsets of instructions. They are the
groups will be executed before and after the :mod:`~kivy.graphics.canvas` group
respectively. This means that they will appear under (be executed before) and
above (be executed after) them.
Thoses groups are not created until the user access it.
Thoses groups are not created until the user accesses them.
To add a canvas instruction to a widget, you use the canvas context:
@ -71,7 +71,7 @@ Manipulating instructions
Sometime, you want to update or remove the instructions you added to a canvas,
this can be done in various ways depending on your needs:
You can keep a reference to your instruction and update them::
You can keep a reference to your instructions and update them::
class MyWidget(Widget):
def __init__(self, **kwargs):