diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-22 10:13:46 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-12-22 10:14:11 -0800 |
commit | 73349822cbd6e50526eda9c75453584d73dfca83 (patch) | |
tree | 444c07a3fbaaf3b2b02e1a08a18bad5bab7bbef0 /src/systhread.c | |
parent | b10bd71987cdeb753c106145d6270a359505359c (diff) | |
download | emacs-73349822cbd6e50526eda9c75453584d73dfca83.tar.gz |
; Spelling fixes
Diffstat (limited to 'src/systhread.c')
-rw-r--r-- | src/systhread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systhread.c b/src/systhread.c index 369d8f8b5e5..a2c556fd8e3 100644 --- a/src/systhread.c +++ b/src/systhread.c @@ -219,7 +219,7 @@ void sys_mutex_lock (sys_mutex_t *mutex) { /* FIXME: What happens if the owning thread exits without releasing - the mutex? Accoding to MSDN, the result is undefined behavior. */ + the mutex? According to MSDN, the result is undefined behavior. */ EnterCriticalSection ((LPCRITICAL_SECTION)mutex); } |