Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo: oen to one #52

Merged
merged 1 commit into from
Jan 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub struct Voxel {
pub y: u8,
/// The Z coordinate for the voxel.
pub z: u8,
/// Index in the color palette. Note that this will be oen less than the
/// Index in the color palette. Note that this will be one less than the
/// value stored in the source file, as the palette indices run from
/// 1--255, whereas in memory the indices run from 0--254. Therefore, to
/// make life easier, we store the in-memory index here. Should you
Expand Down
Loading