Skip to content

Commit

Permalink
Put backslashes before the quotes around wasm32
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Brienen <[email protected]>
  • Loading branch information
LikeLakers2 and BenjaminBrienen authored Jan 8, 2025
1 parent 2ce58c9 commit a1204d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_winit/src/winit_windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ impl WinitWindows {
#[expect(clippy::allow_attributes, reason = "`unused_mut` is not always linted")]
#[allow(
unused_mut,
reason = "This variable needs to be mutable if `cfg(target_arch = "wasm32")`"
reason = "This variable needs to be mutable if `cfg(target_arch = \"wasm32\")`"
)]
let mut winit_window_attributes = winit_window_attributes.with_title(window.title.as_str());

Expand Down

0 comments on commit a1204d5

Please sign in to comment.