Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadido3 committed Dec 31, 2023
1 parent d774cf3 commit 4de83e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/stitch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ example list of files:
- `dzi-tile-size`
The size of the resulting deep zoom image (DZI) tiles in pixels. Defaults to 512.
- `dzi-tile-overlap`
TThe number of additional pixels around every deep zoom image (DZI) tile in pixels. Defaults to 2.
The number of additional pixels around every deep zoom image (DZI) tile. Defaults to 2.
- `xmax int`
Right bound of the output rectangle. This coordinate is not included in the output.
- `xmin int`
Expand Down
2 changes: 1 addition & 1 deletion bin/stitch/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var flagOutputPath = flag.String("output", filepath.Join(".", "output.png"), "Th
var flagScaleDivider = flag.Int("divide", 1, "A downscaling factor. 2 will produce an image with half the side lengths.")
var flagBlendTileLimit = flag.Int("blend-tile-limit", 9, "Limits median blending to the n newest tiles by file modification time. If set to 0, all available tiles will be median blended.")
var flagDZITileSize = flag.Int("dzi-tile-size", 512, "The size of the resulting deep zoom image (DZI) tiles in pixels.")
var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile in pixels.")
var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile.")
var flagXMin = flag.Int("xmin", 0, "Left bound of the output rectangle. This coordinate is included in the output.")
var flagYMin = flag.Int("ymin", 0, "Upper bound of the output rectangle. This coordinate is included in the output.")
var flagXMax = flag.Int("xmax", 0, "Right bound of the output rectangle. This coordinate is not included in the output.")
Expand Down

0 comments on commit 4de83e3

Please sign in to comment.