Skip to content

Commit e129a4e

Browse files
committed
fix: debug-print example password
Makes it clearer when an example password contains spaces.
1 parent efe1342 commit e129a4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ fn main() -> Result<()> {
151151
let mut buf = BufWriter::new(Vec::new());
152152
site.expr.write_to(&mut buf, Zeroizing::default())?;
153153
let example = String::from_utf8(buf.into_inner()?)?;
154-
println!("Looks like: {example}");
154+
println!("Looks like: {example:?}");
155155

156156
println!("about {} bits of entropy", size.bits_vartime());
157157
}

0 commit comments

Comments
 (0)