Skip to content

Commit

Permalink
secrecy: fix Secret<T> reference in README.md (#1249)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git authored Nov 14, 2024
1 parent cc13bf8 commit 0e9c9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion secrecy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A simple secret-keeping library for Rust.

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

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

0 comments on commit 0e9c9fd

Please sign in to comment.