Rust: Further rephrasing.

This commit is contained in:
Geoffrey White
2025-03-24 12:23:48 +00:00
parent 363128f4ec
commit 82068a262d

View File

@@ -17,7 +17,7 @@ potential attacks.
When dereferencing a pointer in <code>unsafe</code> code, take care that the pointer is valid and When dereferencing a pointer in <code>unsafe</code> code, take care that the pointer is valid and
points to the intended data. Code may need to be rearranged or additional checks added to ensure points to the intended data. Code may need to be rearranged or additional checks added to ensure
safety in all circumstances. If possible, rewrite the code using safe Rust types to avoid this safety in all circumstances. If possible, rewrite the code using safe Rust types to avoid this
kind of problems altogether. kind of problem altogether.
</p> </p>
</recommendation> </recommendation>