Skip to content

Commit 40c2914

Browse files
authored
fix: typo heuristic (#53)
1 parent 75ca17d commit 40c2914

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ svgcheck [options] SOURCE
4444
| `-V` | `--version` | display the version number and exit |
4545
| `-d RNG` | `--rng=RNG` | specify an alternate RNG file |
4646
| `-o FILENAME` | `--out=FILENAME` | specify an output filename, default to stdout |
47-
| `-g` | `--grey-scale` | use a grey scale hieristic to determine what is white |
47+
| `-g` | `--grey-scale` | use a grey scale heuristic to determine what is white |
4848
| | `--grey-level` | cut off level between black and white |
4949

5050
## Dependencies

svgcheck/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def main():
6767
svg_options.add_option('-a', '--always-emit', action='store_true', default=False,
6868
help='Emit the SVG file even if does not need repairing. Implies -r')
6969
svg_options.add_option('-g', '--grey-scale', action='store_true',
70-
help='Use grey scaling hieristic to determine what is white')
70+
help='Use grey scaling heuristic to determine what is white')
7171
svg_options.add_option('--grey-level', default=381,
7272
help='Level to use for grey scaling, defaults to 381')
7373
optionparser.add_option_group(svg_options)

0 commit comments

Comments
 (0)