From 51cb3bd277630e39364c23fb67f21c4923d15d88 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 12 Sep 2022 20:32:11 -0700 Subject: [PATCH] Fix formatting --- src/chunk.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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);