Update hex.md

Fix spelling typo
This commit is contained in:
Flamenco 2023-10-30 03:34:49 -04:00 committed by GitHub
parent 752b035c1a
commit 46558cfc76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ representation of the data.
Similarly, a `HEXUPPER::decode` method is provided which takes a `&[u8]` and
returns a `Vec<u8>` 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