From 30920130ea5e3b298a7b24fbcf7aa7fb0695b346 Mon Sep 17 00:00:00 2001 From: jamesarch Date: Wed, 22 Mar 2023 15:35:32 +0800 Subject: [PATCH] fix typo fix typo --- src/advance/unsafe/inline-asm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/advance/unsafe/inline-asm.md b/src/advance/unsafe/inline-asm.md index 63a47693..398e1983 100644 --- a/src/advance/unsafe/inline-asm.md +++ b/src/advance/unsafe/inline-asm.md @@ -29,7 +29,7 @@ unsafe { 注意 `unsafe` 语句块依然是必不可少的,因为可能在里面插入危险的指令,最终破坏代码的安全性。 -上面代码将插入一个 `NOP` 指令( 空操作 ) 到编译器生成的汇编代码中,其中指令作为 `asn!` 的第一个参数传入。 +上面代码将插入一个 `NOP` 指令( 空操作 ) 到编译器生成的汇编代码中,其中指令作为 `asm!` 的第一个参数传入。 ## 输入和输出 @@ -272,4 +272,4 @@ assert_eq!(x, 4 * 6); 由于这块儿内容过于专业,本书毕竟是通用的 Rust 学习书籍,因此关于内联汇编就不再赘述。事实上,如果你要真的写出可用的汇编代码,要学习的还很多... -感兴趣的同学可以看看如下英文资料: [Rust Reference](https://doc.rust-lang.org/reference/inline-assembly.html) 和 [Rust By Example](https://doc.rust-lang.org/rust-by-example/unsafe/asm.html#clobbered-registers)。 \ No newline at end of file +感兴趣的同学可以看看如下英文资料: [Rust Reference](https://doc.rust-lang.org/reference/inline-assembly.html) 和 [Rust By Example](https://doc.rust-lang.org/rust-by-example/unsafe/asm.html#clobbered-registers)。