Skip to content

Commit

Permalink
Doc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Szunti committed Sep 23, 2018
1 parent c0ecd24 commit 7b1b7ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webfont/make_woff.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def error(*args):


if sys.version_info[0:2] < (3, 6):
error("This script requires Python version 3.6")
error("This script requires Python version 3.6 or later.")
exit(1)


Expand Down Expand Up @@ -146,9 +146,9 @@ def feed(self, codepoint):

class BaseFilter():
def feed(self, codepoint):
"""Let the filter handle the codepoint.
"""Let a subclassing filter handle the codepoint.
Returning True means that the codepoint was handled subsequent filters
Returning True means that the codepoint was handled, subsequent filters
will be skipped.
"""
Expand Down

0 comments on commit 7b1b7ca

Please sign in to comment.