From 892322aaff6a89bea5927379ec06bc0da3dfb7df Mon Sep 17 00:00:00 2001 From: Thomas Rettig Date: Tue, 4 Jan 2022 18:44:04 +0800 Subject: [PATCH] Fix grammar (#2487) --- Lib/fontTools/feaLib/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/fontTools/feaLib/__main__.py b/Lib/fontTools/feaLib/__main__.py index 058aa0845..a45230e8d 100644 --- a/Lib/fontTools/feaLib/__main__.py +++ b/Lib/fontTools/feaLib/__main__.py @@ -12,7 +12,7 @@ log = logging.getLogger("fontTools.feaLib") def main(args=None): - """Add features from a feature file (.fea) into a OTF font""" + """Add features from a feature file (.fea) into an OTF font""" parser = argparse.ArgumentParser( description="Use fontTools to compile OpenType feature files (*.fea)." ) @@ -46,7 +46,7 @@ def main(args=None): parser.add_argument( "-v", "--verbose", - help="increase the logger verbosity. Multiple -v " "options are allowed.", + help="Increase the logger verbosity. Multiple -v " "options are allowed.", action="count", default=0, )