From 0c3aef95911a9ca12a8bd1ac2336ea59dbaf5fc4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 21 Jun 2017 06:48:13 -0600 Subject: [PATCH] Trivial typo fix --- sched/pthread/pthread_mutexunlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/pthread/pthread_mutexunlock.c b/sched/pthread/pthread_mutexunlock.c index e51a7df98e..be73134883 100644 --- a/sched/pthread/pthread_mutexunlock.c +++ b/sched/pthread/pthread_mutexunlock.c @@ -131,7 +131,7 @@ int pthread_mutex_unlock(FAR pthread_mutex_t *mutex) /* The unlock operation is only performed if the mutex is actually locked. * If the mutex is not locked, then SUCCESS will be returned (there is - * not error return value specified for this case). + * no error return value specified for this case). */ if (pthread_mutex_islocked(mutex))