From 2a903d8aecb0a6093005e219f6bee9dce96b5b24 Mon Sep 17 00:00:00 2001 From: James Seppi Date: Mon, 23 Aug 2021 04:50:33 -0500 Subject: [PATCH] Fix small docstring typos (#414) --- rio_tiler/io/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rio_tiler/io/base.py b/rio_tiler/io/base.py index b9724d99..6431b000 100644 --- a/rio_tiler/io/base.py +++ b/rio_tiler/io/base.py @@ -58,7 +58,7 @@ def spatial_info(self) -> SpatialInfo: ) def tile_exists(self, tile_z: int, tile_x: int, tile_y: int) -> bool: - """Check if a tile is intersets the dataset bounds. + """Check if a tile intersects the dataset bounds. Args: tile_x (int): Tile's horizontal index. @@ -66,7 +66,7 @@ def tile_exists(self, tile_z: int, tile_x: int, tile_y: int) -> bool: tile_z (int): Tile's zoom level index. Returns: - bool: True if the tile is intersets the dataset bounds. + bool: True if the tile intersects the dataset bounds. """ tile = Tile(x=tile_x, y=tile_y, z=tile_z)