1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

change wording in a comment

This commit is contained in:
Ubuntu 2023-02-10 02:09:46 +00:00
parent ef91f436c0
commit 2fc768612e

View file

@ -41,7 +41,7 @@ let block_state: BlockState = azalea_block::CobblestoneWallBlock {
## azalea_registry::Block enum
This one technically isn't from the `azalea-block` crate, but it's still very relevant. It's an enum that contains every block type as a variant *without* containing any state data (like `BlockState` and the `Block` trait). Converting this into any other block type will use the default state for that block.
This one technically isn't from the `azalea-block` crate, but it's still very relevant. It's an enum that contains every block type as a variant *without* containing any state data (unlike `BlockState` and the `Block` trait). Converting this into any other block type will use the default state for that block.
```
# use azalea_block::BlockState;