Skip to content

Commit

Permalink
fix a typo (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
keepsimple1 authored Jan 19, 2021
1 parent 027f6dc commit c5bb42f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 0.6.1
- Fix a typo

# Version 0.6.0
- Reverse API change in 0.5.0

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libaes"
version = "0.6.0"
version = "0.6.1"
authors = ["Han Xu <[email protected]>"]
edition = "2018"
description = "AES cipher in safe Rust with no dependencies"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl Cipher {
/// Decrypt in CBC mode.
///
/// The input data is not modified. The output is a new Vec. Padding is handled automatically.
/// If decrypt encounted unexpected errors, the output is an empty Vec.
/// If decrypt encountered unexpected errors, the output is an empty Vec.
///
/// `iv` is a 16-byte slice. Panics if `iv` is less than 16 bytes.
///
Expand Down

0 comments on commit c5bb42f

Please sign in to comment.