summaryrefslogtreecommitdiff
path: root/nuttx/mm
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/mm')
-rw-r--r--nuttx/mm/mm_sem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/mm/mm_sem.c b/nuttx/mm/mm_sem.c
index 4b7563c0b..a2d9d5cd1 100644
--- a/nuttx/mm/mm_sem.c
+++ b/nuttx/mm/mm_sem.c
@@ -2,7 +2,7 @@
* mm/mm_sem.c
*
* Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -129,7 +129,7 @@ int mm_trysemaphore(void)
}
else
{
- /* Try to tak the semaphore (perhaps waiting) */
+ /* Try to take the semaphore (perhaps waiting) */
if (sem_trywait(&g_mm_semaphore) != 0)
{