Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andydude committed Mar 29, 2015
1 parent 998feee commit 9556666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bswap"
version = "0.2.1"
version = "0.2.2"
authors = ["Andrew Robbins <and_j_rob@yahoo.com>"]
license = "MIT"
homepage = "https://andydude.github.io/rust-bswap/bswap/index.html"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ pub mod u8 {
}
}

pub fn endode_hex(src: &[u8]) -> String {
pub fn encode_hex(src: &[u8]) -> String {
static CHARS: &'static[u8] = b"0123456789abcdef";
let mut v = Vec::with_capacity(src.len() * 2);
for &byte in src.iter() {
Expand Down

0 comments on commit 9556666

Please sign in to comment.