From a249e956931413905bef79329d254e2a3f51dc9e Mon Sep 17 00:00:00 2001 From: Mark Lodato Date: Tue, 5 Jul 2022 16:59:31 +0000 Subject: [PATCH] Fix small typo in example name (#5217) **This Commit** Renames "Scale Factor Iverride" to "Scale Factor Override". **Why?** I imagine the current name is a typo. --- Cargo.toml | 2 +- examples/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 39cbb743c8..43c3a77b0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1435,7 +1435,7 @@ name = "scale_factor_override" path = "examples/window/scale_factor_override.rs" [package.metadata.example.scale_factor_override] -name = "Scale Factor Iverride" +name = "Scale Factor Override" description = "Illustrates how to customize the default window settings" category = "Window" wasm = true diff --git a/examples/README.md b/examples/README.md index 75db88c9f5..0ee68a62e8 100644 --- a/examples/README.md +++ b/examples/README.md @@ -317,7 +317,7 @@ Example | Description [Clear Color](../examples/window/clear_color.rs) | Creates a solid color window [Low Power](../examples/window/low_power.rs) | Demonstrates settings to reduce power use for bevy applications [Multiple Windows](../examples/window/multiple_windows.rs) | Demonstrates creating multiple windows, and rendering to them -[Scale Factor Iverride](../examples/window/scale_factor_override.rs) | Illustrates how to customize the default window settings +[Scale Factor Override](../examples/window/scale_factor_override.rs) | Illustrates how to customize the default window settings [Transparent Window](../examples/window/transparent_window.rs) | Illustrates making the window transparent and hiding the window decoration [Window Settings](../examples/window/window_settings.rs) | Demonstrates customizing default window settings