fix docs typo (#25)

This commit is contained in:
Oskar Skuteli
2022-09-25 09:06:19 +02:00
committed by GitHub
parent c9d9073b17
commit 2448dbb3ba
2 changed files with 2 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ OPTIONS:
-i, --input <input> Path to input raster image
-m, --mode <mode> Curver fitting mode `pixel`, `polygon`, `spline`
-o, --output <output> Path to output vector graphics
--path_precision <path_precision> Number of deciaml places to use in path string
--path_precision <path_precision> Number of decimal places to use in path string
--preset <preset> Use one of the preset configs `bw`, `poster`, `photo`
-l, --segment_length <segment_length>
Perform iterative subdivide smooth until all segments are shorter than this length

View File

@@ -200,7 +200,7 @@ impl Config {
let app = app.arg(Arg::with_name("path_precision")
.long("path_precision")
.takes_value(true)
.help("Number of deciaml places to use in path string"));
.help("Number of decimal places to use in path string"));
// Extract matches
let matches = app.get_matches();