about summary refs log tree commit diff
path: root/library/stdarch/examples
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-07-08 23:21:37 +0200
committergnzlbg <gnzlbg@users.noreply.github.com>2019-07-09 01:37:07 +0200
commit686b813f5d8ac504fb2f254731d0d681147d415e (patch)
tree034107a6b30e4447047cfc0cd160e8606907da5d /library/stdarch/examples
parent127f13f10fb0d34eb6000f2c5b16e0cbc9a469ea (diff)
downloadrust-686b813f5d8ac504fb2f254731d0d681147d415e.tar.gz
rust-686b813f5d8ac504fb2f254731d0d681147d415e.zip
Update repo name
Diffstat (limited to 'library/stdarch/examples')
-rw-r--r--library/stdarch/examples/Cargo.toml4
-rw-r--r--library/stdarch/examples/hex.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/library/stdarch/examples/Cargo.toml b/library/stdarch/examples/Cargo.toml
index 855a5d4aaf6..6f00d46230b 100644
--- a/library/stdarch/examples/Cargo.toml
+++ b/library/stdarch/examples/Cargo.toml
@@ -1,12 +1,12 @@
 [package]
-name = "stdsimd_examples"
+name = "stdarch_examples"
 version = "0.0.0"
 authors = [
     "Alex Crichton <alex@alexcrichton.com>",
     "Andrew Gallant <jamslam@gmail.com>",
     "Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
 ]
-description = "Examples of the stdsimd crate."
+description = "Examples of the stdarch crate."
 
 [dependencies]
 core_arch = { path = "../crates/core_arch" }
diff --git a/library/stdarch/examples/hex.rs b/library/stdarch/examples/hex.rs
index 39ea10c7071..b3d6fb0786d 100644
--- a/library/stdarch/examples/hex.rs
+++ b/library/stdarch/examples/hex.rs
@@ -171,7 +171,7 @@ fn hex_encode_fallback<'a>(src: &[u8], dst: &'a mut [u8]) -> Result<&'a str, usi
     unsafe { Ok(str::from_utf8_unchecked(&dst[..src.len() * 2])) }
 }
 
-// Run these with `cargo +nightly test --example hex -p stdsimd`
+// Run these with `cargo +nightly test --example hex -p stdarch`
 #[cfg(test)]
 mod tests {
     use std::iter;
@@ -271,7 +271,7 @@ mod tests {
     }
 }
 
-// Run these with `cargo +nightly bench --example hex -p stdsimd`
+// Run these with `cargo +nightly bench --example hex -p stdarch`
 #[cfg(test)]
 mod benches {
     extern crate rand;