Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JayKickliter committed Jan 8, 2024
1 parent 667dc2c commit 10e8e51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hexit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ flate2 = "1.0.28"
geo = { workspace = true }
geojson = "0.24.1"
h3o = { version = "0.4.0", features = ["geo"] }
hextree = { git = "https://github.com/JayKickliter/HexTree.git", branch = "jsk/add-disk-repr", features = ["disktree"] }
hextree = { git = "https://github.com/JayKickliter/HexTree.git", branch = "main", features = ["disktree"] }
indicatif = "0.17.7"
itertools = "0.10"
nasadem = { path = "../nasadem" }
Expand Down
2 changes: 1 addition & 1 deletion nasadem/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ impl Tile {
self.samples.get_unchecked(idx_1d)
}

/// Returns and iterator over `self`'s grid squares.
/// Returns an iterator over `self`'s grid squares.
pub fn iter(&self) -> impl Iterator<Item = Sample<'_>> + '_ {
(0..(self.dimensions.0 * self.dimensions.1)).map(|index| Sample { tile: self, index })
}
Expand Down

0 comments on commit 10e8e51

Please sign in to comment.