changing many instances of the same grammar error in documentation

This commit is contained in:
jeremy
2014-09-09 17:03:59 -05:00
parent f03b11d271
commit 56091bae1f
11 changed files with 11 additions and 11 deletions

View File

@@ -69,7 +69,7 @@ To draw a polygon, first you need coordinates of vertices. Make those points int
.. Note:: If third argument is ``False``, you will get a polylines joining all the points, not a closed shape.
.. Note:: ``cv2.polylines()`` can be used to draw multiple lines. Just create a list of all the lines you want to draw and pass it to the function. All lines will be drawn individually. It is more better and faster way to draw a group of lines than calling ``cv2.line()`` for each line.
.. Note:: ``cv2.polylines()`` can be used to draw multiple lines. Just create a list of all the lines you want to draw and pass it to the function. All lines will be drawn individually. It is a much better and faster way to draw a group of lines than calling ``cv2.line()`` for each line.
Adding Text to Images:
------------------------