From 92b23c9ac31c8b4f0954b76f8d671be2c2cfcd33 Mon Sep 17 00:00:00 2001 From: SeongJae Park Date: Tue, 21 May 2019 04:07:21 +0900 Subject: [PATCH] SyncPrim: Fix a typo: s/expnads/expands/ Signed-off-by: SeongJae Park --- SyncPrim/linux-sync-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SyncPrim/linux-sync-1.md b/SyncPrim/linux-sync-1.md index c9be84a..2df23d3 100644 --- a/SyncPrim/linux-sync-1.md +++ b/SyncPrim/linux-sync-1.md @@ -198,7 +198,7 @@ static __always_inline void spin_lock(spinlock_t *lock) } ``` -function which allows us to `acquire` a `spinlock`. The `raw_spin_lock` macro is defined in the same header file and expnads to the call of `_raw_spin_lock`: +function which allows us to `acquire` a `spinlock`. The `raw_spin_lock` macro is defined in the same header file and expands to the call of `_raw_spin_lock`: ```C #define raw_spin_lock(lock) _raw_spin_lock(lock)