diff --git a/src/chunk.rs b/src/chunk.rs index fd58a50..0b92ede 100644 --- a/src/chunk.rs +++ b/src/chunk.rs @@ -163,8 +163,9 @@ impl Chunks { /// /// If the position is not inside of a chunk, then `None` is returned. /// - /// **Note**: if you need to get a large number of blocks, it is more efficient - /// to read from the chunks directly with [`Chunk::get_block_state`]. + /// **Note**: if you need to get a large number of blocks, it is more + /// efficient to read from the chunks directly with + /// [`Chunk::get_block_state`]. pub fn get_block_state(&self, pos: impl Into) -> Option { let pos = pos.into(); let chunk_pos = ChunkPos::from(pos);