aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1104bc4..9e31828 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
2 2
3Rust crate to decode and encode hexadecimal. 3Rust crate to decode and encode hexadecimal.
4 4
5##Examples 5## Examples
6```rust 6```rust
7let hex_string = "1a2b3c"; 7let hex_string = "1a2b3c";
8let data = rhex::decode_hex(&hex_string).unwrap(); 8let data = rhex::decode_hex(&hex_string).unwrap();
diff --git a/src/lib.rs b/src/lib.rs
index eddceef..5a19baf 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,6 @@
1//!Rust crate to decode and encode hexadecimal. 1//!Rust crate to decode and encode hexadecimal.
2//! 2//!
3//!#Examples 3//! # Examples
4//!``` 4//!```
5//!let hex_string = "1a2b3c"; 5//!let hex_string = "1a2b3c";
6//!let data = rhex::decode_hex(&hex_string).unwrap(); 6//!let data = rhex::decode_hex(&hex_string).unwrap();