Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeochoa committed Sep 16, 2015
1 parent b8466b3 commit bb3847a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minecart/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ def check_inside_bbox(self, bbox):
and right <= bbox[2]
and top <= bbox[3])

@propery
@property
def width(self):
"Return the width of the bounding box of this object."
left, right = self.get_bbox()[::2]
return right - left

@propery
@property
def height(self):
"Return the height of the bounding box of this object."
bottom, top = self.get_bbox()[1::2]
Expand Down

0 comments on commit bb3847a

Please sign in to comment.