From 555770cd9ef2b8c25d35008de789b8489c1f589a Mon Sep 17 00:00:00 2001 From: Lammert Bies Date: Mon, 19 Dec 2016 20:26:11 +0100 Subject: [PATCH] Fixed internal doc links --- doc/APIReference.md | 4 ++-- doc/api/httplib_pthread_getspecific.md | 2 +- doc/api/httplib_pthread_key_create.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/APIReference.md b/doc/APIReference.md index f0ff84c4..8737e1af 100644 --- a/doc/APIReference.md +++ b/doc/APIReference.md @@ -106,8 +106,8 @@ LibHTTP is often used as HTTP and HTTPS library inside a larger application. A * [`httplib_pthread_cond_signal( cv );`](api/httplib_pthread_cond_signal.md) * [`httplib_pthread_cond_timedwait( cv, mutex, abstime );`](api/httplib_pthread_cond_timedwait.md) * [`httplib_pthread_cond_wait( cv, mutex );`](api/httplib_pthread_cond_wait.md) -* [`httplib_pthread_getspecific( key );`](api/httplib_getspecific.md) -* [`httplib_pthread_key_create( key, destructor );`](api/httplib_key_create.md) +* [`httplib_pthread_getspecific( key );`](api/httplib_pthread_getspecific.md) +* [`httplib_pthread_key_create( key, destructor );`](api/httplib_pthread_key_create.md) * [`httplib_pthread_key_delete( key );`](api/httplib_pthread_key_delete.md) * [`httplib_pthread_mutex_destroy( mutex );`](api/httplib_pthread_mutex_destroy.md) * [`httplib_pthread_mutex_init( mutex, attr );`](api/httplib_pthread_mutex_init.md) diff --git a/doc/api/httplib_pthread_getspecific.md b/doc/api/httplib_pthread_getspecific.md index c492760b..4df65022 100644 --- a/doc/api/httplib_pthread_getspecific.md +++ b/doc/api/httplib_pthread_getspecific.md @@ -12,7 +12,7 @@ | Type | Description | | :--- | :--- | -|`void *`|Pointer to the memory area or NULL of no area could be found| +|`void *`|Pointer to the memory area or NULL if no area could be found| ### Description diff --git a/doc/api/httplib_pthread_key_create.md b/doc/api/httplib_pthread_key_create.md index fa0246f4..4bcc02b5 100644 --- a/doc/api/httplib_pthread_key_create.md +++ b/doc/api/httplib_pthread_key_create.md @@ -7,7 +7,7 @@ | Parameter | Type | Description | | :--- | :--- | :--- | |**`key`**|`pthread_key_t`|The key of the variable to set| -|**`destructor`**|`void (*destructor)(void *)`|Pointer to destructor function to be called when the key is destroyed| +|**`destructor`**|`void (*destructor)(void *)`|Pointer to a destructor function to be called when the key is destroyed, or NULL if no destructor functionality is needed| ### Return Value