diff options
| author | Sébastien Crozet <sebcrozet@dimforge.com> | 2024-06-09 11:12:31 +0200 |
|---|---|---|
| committer | Sébastien Crozet <sebastien@crozet.re> | 2024-06-09 12:09:58 +0200 |
| commit | ad960bf2458bd907942b1f236438f42f3194a6f6 (patch) | |
| tree | edffab69df8c40a2f1767baed63c3c2545cf1eeb /examples2d | |
| parent | edaa36ac7e702f419faab4ff1b9af858fc84177f (diff) | |
| download | rapier-ad960bf2458bd907942b1f236438f42f3194a6f6.tar.gz rapier-ad960bf2458bd907942b1f236438f42f3194a6f6.tar.bz2 rapier-ad960bf2458bd907942b1f236438f42f3194a6f6.zip | |
chore: clippy fixes
Diffstat (limited to 'examples2d')
| -rw-r--r-- | examples2d/all_examples2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index 6113df4..3d065a5 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -56,7 +56,7 @@ fn demo_name_from_command_line() -> Option<String> { None } -#[cfg(any(target_arch = "wasm32"))] +#[cfg(target_arch = "wasm32")] fn demo_name_from_url() -> Option<String> { None // let window = stdweb::web::window(); |
