Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kdnakt committed Sep 2, 2023
1 parent 9df2e70 commit 2b7608a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scope/move/partial_move.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ not be required as the definition of `age` would copy the data from
-->
この例では、`age`変数をヒープ上に保持し、部分的ムーブを説明しています。
上記コードで`ref`を削除すると、`person.age`の所有権が`age`変数にムーブされるため、エラーになります。
もしも`person.age`がスタック上に保持されていたら、
もしも`Person.age`がスタック上に保持されていたら、
`age`の定義が`person.age`をムーブすることなくデータをコピーするので、
`ref`は必須ではないのですが、実際にはヒープ上に保持されているため`ref`は必須です。

Expand Down

0 comments on commit 2b7608a

Please sign in to comment.