This commit is contained in:
Robin Appelman 2025-05-30 19:20:24 +02:00
commit 24a4124e04
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ name = "sourcenav"
version = "0.3.0" version = "0.3.0"
authors = ["Robin Appelman <robin@icewind.nl>"] authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021" edition = "2021"
description = "parsing of SourceEngine .nav files" description = "Parsing of SourceEngine .nav files"
license = "AGPL-3.0" license = "AGPL-3.0"
repository = "https://codeberg.org/icewind/sourcenav" repository = "https://codeberg.org/icewind/sourcenav"
documentation = "https://docs.rs/sourcenav" documentation = "https://docs.rs/sourcenav"

View file

@ -62,7 +62,7 @@ pub fn get_quad_tree<R: Read + Seek>(data: &mut R) -> Result<NavQuadTree, ParseE
} }
impl NavQuadTree { impl NavQuadTree {
/// Find the navigation areas at a x/y cooordinate /// Find the navigation areas at a x/y coordinate
/// ///
/// ## Examples /// ## Examples
/// ///
@ -84,9 +84,9 @@ impl NavQuadTree {
self.0.query(query_box).into_iter().map(|(area, ..)| area) self.0.query(query_box).into_iter().map(|(area, ..)| area)
} }
/// Find the z-height of a specfic x/y cooordinate /// Find the z-height of a specific x/y coordinate
/// ///
/// Note that multiple heights might exist for a given x/y coooridnate /// Note that multiple heights might exist for a given x/y coordinate
/// ///
/// ## Examples /// ## Examples
/// ///