Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ch19-01-unsafe-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ ABIは関数の呼び出し方法をアセンブリレベルで定義します
> ```rust
> #[no_mangle]
> pub extern "C" fn call_from_c() {
> // CからRust関数を呼び出したばかり
> // CからRust関数を呼び出しただけ
> println!("Just called a Rust function from C!");
> }
> ```
Expand All @@ -757,7 +757,7 @@ ABIは関数の呼び出し方法をアセンブリレベルで定義します
### Accessing or Modifying a Mutable Static Variable
-->

### 可変で静的な変数にアクセスしたり、変更する
### 可変で静的な変数にアクセスしたり、変更したりする

<!--
Until now, we’ve not talked about *global variables*, which Rust does support
Expand Down