We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0d1a8a commit 1517021Copy full SHA for 1517021
opaque-debug/src/lib.rs
@@ -22,14 +22,14 @@
22
//!
23
//! The macro also support generic paramters:
24
//! ```
25
-//! pub struct GenricCryptoStuff<K> {
+//! pub struct GenericCryptoStuff<K> {
26
//! key: K,
27
//! }
28
29
-//! opaque_debug::implement!(GenricCryptoStuff<K>);
+//! opaque_debug::implement!(GenericCryptoStuff<K>);
30
31
-//! let val = GenricCryptoStuff { key: [42u8; 16] };
32
-//! assert_eq!(format!("{:?}", val), "GenricCryptoStuff<[u8; 16]> { ... }")
+//! let val = GenericCryptoStuff { key: [42u8; 16] };
+//! assert_eq!(format!("{:?}", val), "GenericCryptoStuff<[u8; 16]> { ... }")
33
34
#![no_std]
35
#![doc(
0 commit comments