Skip to content

Commit

Permalink
Fix small docstring typos (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
jseppi authored Aug 23, 2021
1 parent 11d6ea8 commit 2a903d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rio_tiler/io/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ 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.
tile_y (int): Tile's vertical index.
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)
Expand Down

0 comments on commit 2a903d8

Please sign in to comment.