diff options
Diffstat (limited to 'zix/sem.h')
-rw-r--r-- | zix/sem.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - Copyright 2012 David Robillard <http://drobilla.net> + Copyright 2012-2014 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -60,13 +60,13 @@ extern "C" { typedef struct ZixSemImpl ZixSem; /** - Create and initialize @c sem to @c initial. + Create and initialize `sem` to `initial`. */ static inline ZixStatus zix_sem_init(ZixSem* sem, unsigned initial); /** - Destroy @c sem. + Destroy `sem`. */ static inline void zix_sem_destroy(ZixSem* sem); |