We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents faf4609 + c033ece commit 65f068eCopy full SHA for 65f068e
src/ch19-01-unsafe-rust.md
@@ -283,7 +283,7 @@ Creating a pointer does no harm; it’s only when we try to access the value tha
283
it points at that we might end up dealing with an invalid value.
284
-->
285
286
-ポインタの生成は害を及ぼしません; 無効な値を扱うことに落ち着く可能性のあるポインタが指している値にアクセスしようとする時のみです。
+ポインタの生成は害を及ぼしません; 問題が起こり得るのはポインタが指している値にアクセスしようとするときのみで、この際に無効な値を扱うことになる可能性があります。
287
288
<!--
289
Note also that in Listing 19-1 and 19-3, we created `*const i32` and `*mut i32`
0 commit comments