about summary refs log tree commit diff
path: root/library/stdarch/examples/wasm.rs
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-01-30 13:21:24 +0100
committergnzlbg <gnzlbg@users.noreply.github.com>2019-01-30 13:46:41 +0100
commitd5ef055ba904de9624edb0ce9ee02bc523d3dc31 (patch)
tree65acccd3b2fae17f1a96c5b96da957cdaa4b9149 /library/stdarch/examples/wasm.rs
parent25197fca7b1bef45f2e2115e0343c62132f6d48e (diff)
downloadrust-d5ef055ba904de9624edb0ce9ee02bc523d3dc31.tar.gz
rust-d5ef055ba904de9624edb0ce9ee02bc523d3dc31.zip
Fix building docs for all targets on docs.rs and re-export the arch module
Diffstat (limited to 'library/stdarch/examples/wasm.rs')
-rw-r--r--library/stdarch/examples/wasm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/examples/wasm.rs b/library/stdarch/examples/wasm.rs
index 93124e69277..e6006df06ec 100644
--- a/library/stdarch/examples/wasm.rs
+++ b/library/stdarch/examples/wasm.rs
@@ -7,7 +7,7 @@ extern crate core_arch;
 
 use std::ptr;
 
-use core_arch::arch::wasm32::*;
+use core_arch::wasm32::*;
 
 static mut HEAD: *mut *mut u8 = 0 as _;