From 6060898753f40b61c7a6ed3abf8ed4025176aad2 Mon Sep 17 00:00:00 2001 From: Yoshito Komatsu Date: Tue, 26 Jul 2022 22:54:12 +0900 Subject: [PATCH] Fix the typo --- blog/content/edition-2/posts/06-double-faults/index.ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/06-double-faults/index.ja.md b/blog/content/edition-2/posts/06-double-faults/index.ja.md index bef1360f..dc048eba 100644 --- a/blog/content/edition-2/posts/06-double-faults/index.ja.md +++ b/blog/content/edition-2/posts/06-double-faults/index.ja.md @@ -382,7 +382,7 @@ pub fn init() { [`set_cs`]: https://docs.rs/x86_64/0.14.2/x86_64/instructions/segmentation/fn.set_cs.html [`load_tss`]: https://docs.rs/x86_64/0.14.2/x86_64/instructions/tables/fn.load_tss.html -これで正常なTSSと割り込みスタックテーブルを読み込みこんだので、私達はIDT内のダブルフォルトハンドラにスタックインデックスをセットすることができます: +これで正常なTSSと割り込みスタックテーブルを読み込んだので、私達はIDT内のダブルフォルトハンドラにスタックインデックスをセットすることができます: ```rust // in src/interrupts.rs