From 46558cfc760c69b395509d65b304834da9b602a2 Mon Sep 17 00:00:00 2001 From: Flamenco Date: Mon, 30 Oct 2023 03:34:49 -0400 Subject: [PATCH] Update hex.md Fix spelling typo --- src/encoding/string/hex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encoding/string/hex.md b/src/encoding/string/hex.md index 3cd2914..be9ce95 100644 --- a/src/encoding/string/hex.md +++ b/src/encoding/string/hex.md @@ -9,7 +9,7 @@ representation of the data. Similarly, a `HEXUPPER::decode` method is provided which takes a `&[u8]` and returns a `Vec` if the input data is successfully decoded. -The example below coverts `&[u8]` data to hexadecimal equivalent. Compares this +The example below converts `&[u8]` data to hexadecimal equivalent. Compares this value to the expected value. ```rust,edition2018