From c4e88fe4b087da7ad3f966e0ff608ec2bd3433c7 Mon Sep 17 00:00:00 2001 From: Oleg Bogdanov Date: Fri, 25 Feb 2022 15:54:03 +0000 Subject: [PATCH] Rename "2d rotation" example name to "rotation" (#3965) All other examples dont have "2d" prefix in their names (even though they are in 2d folder) and reading README makes user think that example is named "rotation" not "2d_rotation" hence rename PR # Objective - Remove discrepancy between example name in documentation and in cargo ## Solution - Rename example in cargo file --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 76130b0a1a..f7a7a95f2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ name = "move_sprite" path = "examples/2d/move_sprite.rs" [[example]] -name = "2d_rotation" +name = "rotation" path = "examples/2d/rotation.rs" [[example]]