bevy/examples/asset
Ame 9d67edc3a6
fix some typos (#12038)
# Objective

Split - containing only the fixed typos

-
https://github.com/bevyengine/bevy/pull/12036#pullrequestreview-1894738751


# Migration Guide
In `crates/bevy_mikktspace/src/generated.rs` 

```rs
// before
pub struct SGroup {
    pub iVertexRepresentitive: i32,
    ..
}

// after
pub struct SGroup {
    pub iVertexRepresentative: i32,
    ..
}
```

In `crates/bevy_core_pipeline/src/core_2d/mod.rs`

```rs
// before
Node2D::ConstrastAdaptiveSharpening

// after
Node2D::ContrastAdaptiveSharpening
```

---------

Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
Co-authored-by: James Liu <contact@jamessliu.com>
Co-authored-by: François <mockersf@gmail.com>
2024-02-22 18:55:22 +00:00
..
processing fix some typos (#12038) 2024-02-22 18:55:22 +00:00
asset_decompression.rs fix some typos (#12038) 2024-02-22 18:55:22 +00:00
asset_loading.rs revert PointLightBundle to DirectionalLightBundle change made to asset_loading example between 0.12.1 and 0.13.0 (#11935) 2024-02-18 07:42:54 +00:00
bevy_pixel_light.png Fix embedded asset path manipulation (#10383) 2024-02-02 14:49:05 +00:00
custom_asset.rs Inverse missing_docs logic (#11676) 2024-02-03 21:40:55 +00:00
custom_asset_reader.rs fix example custom_asset_reader on wasm (#10574) 2023-11-16 01:50:13 +00:00
embedded_asset.rs Fix embedded asset path manipulation (#10383) 2024-02-02 14:49:05 +00:00
hot_asset_reloading.rs Change light defaults & fix light examples (#11581) 2024-02-14 20:43:10 +00:00