aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUbuntu <github@matdoes.dev>2023-02-10 02:09:46 +0000
committerUbuntu <github@matdoes.dev>2023-02-10 02:09:46 +0000
commit2fc768612e04e70c77af013285da13e84b2d5cb0 (patch)
tree8a9762992f92a961b540a53cc0e3da6ee1a7c76d
parentef91f436c0bbfe776385301001edfdc8371530f5 (diff)
downloadazalea-drasl-2fc768612e04e70c77af013285da13e84b2d5cb0.tar.xz
change wording in a comment
-rwxr-xr-xazalea-block/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-block/README.md b/azalea-block/README.md
index d85d5bb1..d5eb1bde 100755
--- a/azalea-block/README.md
+++ b/azalea-block/README.md
@@ -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;