Skip to content

Commit

Permalink
fix: typo heuristic (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored May 15, 2024
1 parent 75ca17d commit 40c2914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ svgcheck [options] SOURCE
| `-V` | `--version` | display the version number and exit |
| `-d RNG` | `--rng=RNG` | specify an alternate RNG file |
| `-o FILENAME` | `--out=FILENAME` | specify an output filename, default to stdout |
| `-g` | `--grey-scale` | use a grey scale hieristic to determine what is white |
| `-g` | `--grey-scale` | use a grey scale heuristic to determine what is white |
| | `--grey-level` | cut off level between black and white |

## Dependencies
Expand Down
2 changes: 1 addition & 1 deletion svgcheck/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main():
svg_options.add_option('-a', '--always-emit', action='store_true', default=False,
help='Emit the SVG file even if does not need repairing. Implies -r')
svg_options.add_option('-g', '--grey-scale', action='store_true',
help='Use grey scaling hieristic to determine what is white')
help='Use grey scaling heuristic to determine what is white')
svg_options.add_option('--grey-level', default=381,
help='Level to use for grey scaling, defaults to 381')
optionparser.add_option_group(svg_options)
Expand Down

0 comments on commit 40c2914

Please sign in to comment.