Fix some typos.

This commit is contained in:
Jelmer Vernooij
2014-04-25 02:36:25 +02:00
parent 80a514219f
commit 70e43e9808
28 changed files with 47 additions and 47 deletions

View File

@@ -34,7 +34,7 @@
#include "hx_locl.h"
/**
* @page page_env Hx509 enviroment functions
* @page page_env Hx509 environment functions
*
* See the library functions here: @ref hx509_env
*/
@@ -43,7 +43,7 @@
* Add a new key/value pair to the hx509_env.
*
* @param context A hx509 context.
* @param env enviroment to add the enviroment variable too.
* @param env environment to add the environment variable too.
* @param key key to add
* @param value value to add
*
@@ -94,7 +94,7 @@ hx509_env_add(hx509_context context, hx509_env *env,
* Add a new key/binding pair to the hx509_env.
*
* @param context A hx509 context.
* @param env enviroment to add the enviroment variable too.
* @param env environment to add the environment variable too.
* @param key key to add
* @param list binding list to add
*
@@ -141,7 +141,7 @@ hx509_env_add_binding(hx509_context context, hx509_env *env,
* Search the hx509_env for a length based key.
*
* @param context A hx509 context.
* @param env enviroment to add the enviroment variable too.
* @param env environment to add the environment variable too.
* @param key key to search for.
* @param len length of key.
*
@@ -167,7 +167,7 @@ hx509_env_lfind(hx509_context context, hx509_env env,
* Search the hx509_env for a key.
*
* @param context A hx509 context.
* @param env enviroment to add the enviroment variable too.
* @param env environment to add the environment variable too.
* @param key key to search for.
*
* @return the value if the key is found, NULL otherwise.
@@ -190,7 +190,7 @@ hx509_env_find(hx509_context context, hx509_env env, const char *key)
* Search the hx509_env for a binding.
*
* @param context A hx509 context.
* @param env enviroment to add the enviroment variable too.
* @param env environment to add the environment variable too.
* @param key key to search for.
*
* @return the binding if the key is found, NULL if not found.
@@ -229,9 +229,9 @@ env_free(hx509_env b)
}
/**
* Free an hx509_env enviroment context.
* Free an hx509_env environment context.
*
* @param env the enviroment to free.
* @param env the environment to free.
*
* @ingroup hx509_env
*/