Skip to content

Commit 4de83e3

Browse files
committed
Fix typos
1 parent d774cf3 commit 4de83e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/stitch/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ example list of files:
4747
- `dzi-tile-size`
4848
The size of the resulting deep zoom image (DZI) tiles in pixels. Defaults to 512.
4949
- `dzi-tile-overlap`
50-
TThe number of additional pixels around every deep zoom image (DZI) tile in pixels. Defaults to 2.
50+
The number of additional pixels around every deep zoom image (DZI) tile. Defaults to 2.
5151
- `xmax int`
5252
Right bound of the output rectangle. This coordinate is not included in the output.
5353
- `xmin int`

bin/stitch/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var flagOutputPath = flag.String("output", filepath.Join(".", "output.png"), "Th
2626
var flagScaleDivider = flag.Int("divide", 1, "A downscaling factor. 2 will produce an image with half the side lengths.")
2727
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.")
2828
var flagDZITileSize = flag.Int("dzi-tile-size", 512, "The size of the resulting deep zoom image (DZI) tiles in pixels.")
29-
var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile in pixels.")
29+
var flagDZIOverlap = flag.Int("dzi-tile-overlap", 2, "The number of additional pixels around every deep zoom image (DZI) tile.")
3030
var flagXMin = flag.Int("xmin", 0, "Left bound of the output rectangle. This coordinate is included in the output.")
3131
var flagYMin = flag.Int("ymin", 0, "Upper bound of the output rectangle. This coordinate is included in the output.")
3232
var flagXMax = flag.Int("xmax", 0, "Right bound of the output rectangle. This coordinate is not included in the output.")

0 commit comments

Comments
 (0)