Skip to content

Commit 4a77252

Browse files
committed
用語の変更: アンワインディング→巻き戻し
1 parent 88753c7 commit 4a77252

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

1.6/ja/book/unsafe.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ Rustの文脈で、安全とは「どのようなアンセーフなこともし
9292
* Exiting without calling destructors
9393
* Integer overflow
9494
-->
95-
9695
* デッドロック
9796
* メモリやその他のリソースのリーク
9897
* デストラクタを呼び出さないプログラム終了
@@ -144,7 +143,6 @@ avoided, even when writing `unsafe` code:
144143
* Unwinding into Rust from foreign code or unwinding from Rust into foreign
145144
code.
146145
-->
147-
148146
* データ競合
149147
* ヌル・ダングリング生ポインタの参照外し
150148
* [undef][undef] (未初期化)メモリの読み出し
@@ -161,7 +159,7 @@ avoided, even when writing `unsafe` code:
161159
* `enum` の定義に含まれていない判別子
162160
* `char` における、サロゲートか `char::MAX` を超えた値
163161
* `str` における、UTF-8でないバイト列
164-
* 他言語からRustへのアンワインディングや、Rustから他言語へのアンワインディング
162+
* 他言語からRustへの巻き戻しや、Rustから他言語への巻き戻し
165163

166164
[noalias]: http://llvm.org/docs/LangRef.html#noalias
167165
[undef]: http://llvm.org/docs/LangRef.html#undefined-values

TranslationTable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
| unsafe | アンセーフ
143143
| unsigned | 符号無し
144144
| unsized type | サイズ不定型
145-
| unwinding | アンワインディング
145+
| unwinding | 巻き戻し
146146
| variable | 変数
147147
| variable binding | 変数束縛
148148
| variant | ヴァリアント

0 commit comments

Comments
 (0)