Skip to content

Commit 80b0420

Browse files
committed
Spelling fixes
1 parent 4de2c3d commit 80b0420

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/geotiffimage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ class GeoTIFFImage {
619619
* interleaved typed array.
620620
* Colorspaces other than RGB will be transformed to RGB, color maps expanded.
621621
* When no other method is applicable, the first sample is used to produce a
622-
* greayscale image.
622+
* grayscale image.
623623
* When provided, only a subset of the raster is read for each sample.
624624
*
625625
* @param {Object} [options] optional parameters

src/source/remote.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ class RemoteSource extends BaseSource {
8585
if (slices.length > 1) {
8686
// we requested more than one slice, but got only the first
8787
// unfortunately, some HTTP Servers don't support multi-ranges
88-
// and return onyl the first
88+
// and return only the first
8989

90-
// get the rest of the slices and fetch them iteratetively
90+
// get the rest of the slices and fetch them iteratively
9191
const others = await Promise.all(slices.slice(1).map((slice) => this.fetchSlice(slice, signal)));
9292
return first.concat(others);
9393
}

0 commit comments

Comments
 (0)