Skip to content
This repository has been archived by the owner on Mar 17, 2018. It is now read-only.

Commit

Permalink
Merge pull request #67 from miguelsousa/patch-1
Browse files Browse the repository at this point in the history
Fix documentation of _get_clockwise()
  • Loading branch information
benkiel committed Feb 26, 2018
2 parents f00617c + f240546 commit d07f8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/robofab/objects/objectsBase.py
Expand Up @@ -1851,7 +1851,7 @@ def _get_clockwise(self):
self.draw(pen)
return pen.value < 0

clockwise = property(_get_clockwise, _set_clockwise, doc="direction of contour: positive=counterclockwise negative=clockwise")
clockwise = property(_get_clockwise, _set_clockwise, doc="direction of contour: True=clockwise False=counterclockwise")

def copy(self, aParent=None):
"""Duplicate this contour"""
Expand Down

0 comments on commit d07f8dc

Please sign in to comment.