about summary refs log tree commit diff
path: root/library/stdarch/examples/hex.rs
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/hex.rs
parent127f13f10fb0d34eb6000f2c5b16e0cbc9a469ea (diff)
downloadrust-686b813f5d8ac504fb2f254731d0d681147d415e.tar.gz
rust-686b813f5d8ac504fb2f254731d0d681147d415e.zip
Update repo name
Diffstat (limited to 'library/stdarch/examples/hex.rs')
-rw-r--r--library/stdarch/examples/hex.rs4
1 files changed, 2 insertions, 2 deletions
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;