From edaa36ac7e702f419faab4ff1b9af858fc84177f Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 9 Jun 2024 10:57:37 +0200 Subject: chore: add more comments --- examples3d/all_examples3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples3d/all_examples3.rs') diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs index ec4f533..72a3cf7 100644 --- a/examples3d/all_examples3.rs +++ b/examples3d/all_examples3.rs @@ -71,7 +71,7 @@ fn demo_name_from_command_line() -> Option { None } -#[cfg(any(target_arch = "wasm32", target_arch = "asmjs"))] +#[cfg(target_arch = "wasm32")] fn demo_name_from_url() -> Option { None // let window = stdweb::web::window(); @@ -83,7 +83,7 @@ fn demo_name_from_url() -> Option { // } } -#[cfg(not(any(target_arch = "wasm32", target_arch = "asmjs")))] +#[cfg(not(target_arch = "wasm32"))] fn demo_name_from_url() -> Option { None } -- cgit