From 19b923fe8c9bd92dc09958261793851a55a666ac Mon Sep 17 00:00:00 2001 From: 0xAX <0xAX@users.noreply.github.com> Date: Sun, 25 Oct 2015 18:39:50 +0600 Subject: [PATCH] Update interrupts-9.md --- interrupts/interrupts-9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interrupts/interrupts-9.md b/interrupts/interrupts-9.md index d613887..741b59b 100644 --- a/interrupts/interrupts-9.md +++ b/interrupts/interrupts-9.md @@ -22,7 +22,7 @@ Interrupts may have different important characteristics and there are two among * Handler of an interrupt must execute quickly; * Sometime an interrupt handler must do a large amount of work. -As you can understand, it is almost impossible to make so that both characteristics were valid. Because of these, previously the handling of interrupts was splitted into two parts: +As you can understand, it is almost impossible to make so that both characteristics were valid. Because of these, previously the handling of interrupts was split into two parts: * Top half; * Bottom half;