From 5f00ca206d0075427e57921d366465fbdab95e63 Mon Sep 17 00:00:00 2001 From: Squirrel Date: Sat, 13 Apr 2024 22:09:48 +0800 Subject: [PATCH] Fix typo --- .../edition-2/posts/01-freestanding-rust-binary/index.zh-TW.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/01-freestanding-rust-binary/index.zh-TW.md b/blog/content/edition-2/posts/01-freestanding-rust-binary/index.zh-TW.md index 09143037..8a436f2a 100644 --- a/blog/content/edition-2/posts/01-freestanding-rust-binary/index.zh-TW.md +++ b/blog/content/edition-2/posts/01-freestanding-rust-binary/index.zh-TW.md @@ -119,7 +119,7 @@ error: `#[panic_handler]` function required, but not found error: language item required, but not found: `eh_personality` ``` -現在編譯氣告訴我們缺少 `#[panic_handler]` 函式以及 _language item_。 +現在編譯器告訴我們缺少 `#[panic_handler]` 函式以及 _language item_。 ## 實作 panic 處理函式