Skip to content

Commit 0e9c9fd

Browse files
authored
secrecy: fix Secret<T> reference in README.md (#1249)
1 parent cc13bf8 commit 0e9c9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

secrecy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A simple secret-keeping library for Rust.
1515

1616
**secrecy** is a *simple*, safe (i.e. `forbid(unsafe_code)` library which
1717
provides wrapper types and traits for secret management in Rust, namely the
18-
`Secret<T>` type for wrapping another value in a "secret cell" which attempts
18+
`SecretBox<T>` type for wrapping another value in a "secret cell" which attempts
1919
to limit exposure (only available through a special `ExposeSecret` trait).
2020

2121
This helps to ensure secrets aren't accidentally copied, logged, or otherwise

0 commit comments

Comments
 (0)