Skip to content

Commit d18a829

Browse files
committed
fix README
1 parent 07a3c20 commit d18a829

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A portable RSA implementation in pure Rust.
1414
```rust
1515
use rsa::{Pkcs1v15Encrypt, RsaPrivateKey, RsaPublicKey};
1616

17-
let mut rng = rand::thread_rng(); // [email protected].0
17+
let mut rng = rand::thread_rng(); // [email protected]
1818
let bits = 2048;
1919
let priv_key = RsaPrivateKey::new(&mut rng, bits).expect("failed to generate a key");
2020
let pub_key = RsaPublicKey::from(&priv_key);

0 commit comments

Comments
 (0)