From 3acdd305518c543391f6fb28ec346343a2fa11bf Mon Sep 17 00:00:00 2001 From: diogo Date: Sat, 23 May 2020 15:30:22 +0100 Subject: pls work now --- README.md | 2 +- src/lib.rs | 2 +- 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 @@ Rust crate to decode and encode hexadecimal. -##Examples +## Examples ```rust let hex_string = "1a2b3c"; let 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 @@ //!Rust crate to decode and encode hexadecimal. //! -//!#Examples +//! # Examples //!``` //!let hex_string = "1a2b3c"; //!let data = rhex::decode_hex(&hex_string).unwrap(); -- cgit