mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
Update typos
This commit is contained in:
2
.github/workflows/typos.yml
vendored
2
.github/workflows/typos.yml
vendored
@@ -18,4 +18,4 @@ jobs:
|
||||
- name: Checkout Actions Repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Spell Check Repo
|
||||
uses: crate-ci/typos@v1.31.0
|
||||
uses: crate-ci/typos@v1.32.0
|
||||
@@ -15,7 +15,7 @@ pub struct CParticle<'a> {
|
||||
offset: Vector3<f32>,
|
||||
max_speed: f32,
|
||||
particle_count: i32,
|
||||
pariticle_id: VarInt,
|
||||
particle_id: VarInt,
|
||||
#[serde(serialize_with = "network_serialize_no_prefix")]
|
||||
data: &'a [u8],
|
||||
}
|
||||
@@ -29,7 +29,7 @@ impl<'a> CParticle<'a> {
|
||||
offset: Vector3<f32>,
|
||||
max_speed: f32,
|
||||
particle_count: i32,
|
||||
pariticle_id: VarInt,
|
||||
particle_id: VarInt,
|
||||
data: &'a [u8],
|
||||
) -> Self {
|
||||
Self {
|
||||
@@ -39,7 +39,7 @@ impl<'a> CParticle<'a> {
|
||||
offset,
|
||||
max_speed,
|
||||
particle_count,
|
||||
pariticle_id,
|
||||
particle_id,
|
||||
data,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ impl<'a> DoublePerlinNoiseBuilder<'a> {
|
||||
let parameters = DoublePerlinNoiseParameters::id_to_parameters(id)
|
||||
.unwrap_or_else(|| panic!("Unknown noise id: {}", id));
|
||||
|
||||
// Note that the parameters' id is differenent than `id`
|
||||
// Note that the parameters' id is different than `id`
|
||||
let mut random = self
|
||||
.random_config
|
||||
.base_random_deriver
|
||||
|
||||
Reference in New Issue
Block a user