Skip to content

Commit

Permalink
Fixed bizzare grammar that I'm sure was an attempt at consistency. Ho…
Browse files Browse the repository at this point in the history
…wever, that attempt was missguided. Look at what the code actually does, aaron.
  • Loading branch information
probably-nothing committed Dec 27, 2018
1 parent acbe472 commit 7ab2867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/Image.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def getImage(self):
def setScale(self, xFactor, yFactor):
self.__image = self.__image.scaled(self.getWidth()*xFactor, self.getHeight()*yFactor)

def getScale(self, factor):
def getScaled(self, factor):
return self.__image.scaled(self.getWidth()*factor, self.getHeight()*factor)

def getWidth(self):
Expand Down

0 comments on commit 7ab2867

Please sign in to comment.