Rust: Minor fixes.

This commit is contained in:
Geoffrey White
2025-01-23 18:21:27 +00:00
parent 55705232f6
commit d27a71eaaf
3 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
<p>
Sensitive user data and system information that is logged could be seen by an attacker when it is
displayed. Also, external processes often store the standard output and standard error streams of
an application, which will include logged sensitive information.</p>
an application, which will include logged sensitive information.
</p>
</overview>

View File

@@ -1,2 +1,2 @@
let password = "P@ssw0rd";
info!("User password changed to {password}")
info!("User password changed to {password}");

View File

@@ -1,2 +1,2 @@
let password = "P@ssw0rd"
info!("User password changed")
let password = "P@ssw0rd";
info!("User password changed");