* Rename like_number to like_num, to fix inconsistency re Issue #166

This commit is contained in:
Matthew Honnibal 2015-11-04 22:01:44 +11:00
parent 65934b7cd4
commit e96faf29e7

View File

@ -88,7 +88,7 @@ class Language(object):
return orth.like_url(string)
@staticmethod
def like_number(string):
def like_num(string):
return orth.like_number(string)
@staticmethod