From b53e630409f8384d01581918c011634e2b93adb1 Mon Sep 17 00:00:00 2001 From: Urho Laukkarinen Date: Sat, 6 Apr 2024 00:50:05 +0300 Subject: [PATCH] Fix cargo cranky --- examples/bevy/src/camera.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bevy/src/camera.rs b/examples/bevy/src/camera.rs index ead443e..9015773 100644 --- a/examples/bevy/src/camera.rs +++ b/examples/bevy/src/camera.rs @@ -2,7 +2,7 @@ use bevy::input::mouse::{MouseMotion, MouseWheel}; use bevy::math::vec2; use bevy::prelude::*; -/// https://bevy-cheatbook.github.io/cookbook/pan-orbit-camera.html +// https://bevy-cheatbook.github.io/cookbook/pan-orbit-camera.html pub struct PanOrbitCameraPlugin; impl Plugin for PanOrbitCameraPlugin { fn build(&self, app: &mut App) {