diff options
| author | mat <git@matdoes.dev> | 2023-10-26 22:26:07 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-10-26 22:26:14 -0500 |
| commit | 2803e9ef0d785538a23adceba44d45b162629979 (patch) | |
| tree | d64a61403a4f6955e0d8c2695d05498ba7cc2bac /azalea-core/src | |
| parent | ce81ae9cb30b62ee815d361f5762fb2f4a93670e (diff) | |
| download | azalea-drasl-2803e9ef0d785538a23adceba44d45b162629979.tar.xz | |
remove some more #![feature]s
Diffstat (limited to 'azalea-core/src')
| -rwxr-xr-x | azalea-core/src/bitset.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/bitset.rs b/azalea-core/src/bitset.rs index 52a34154..0be04a57 100755 --- a/azalea-core/src/bitset.rs +++ b/azalea-core/src/bitset.rs @@ -127,7 +127,7 @@ impl From<Vec<u8>> for BitSet { /// A list of bits with a known fixed size. /// /// Note that this is primarily meant for fast serialization and deserialization -/// Minecraft, if you don't need that you should use the `fixedbitset` crate +/// for Minecraft, if you don't need that you should use the `fixedbitset` crate /// since it's approximately 20% faster (since it stores the data as usizes /// instead of u8s) #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
