This commit is contained in:
psyc://psyced.org/~lynX 2011-05-09 09:11:59 +02:00
parent ad868c83f4
commit 421e201759
3 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@
*
* @section intro_sec Introduction
*
* Welcome to the libpsyc Documentation!
* Welcome to the libpsyc documentation!
*
* @section install_sec Installation
*

View File

@ -9,7 +9,7 @@
*/
/**
* @defgroup parser Parsing Functions
* @defgroup PSYC Parsing Functions
*
* This module contains packet and list parsing functions.
* The parser adheres to the definition of a packet found at
@ -101,11 +101,11 @@
* }
* @endcode
*
* This simple example does not consider some more complex cases for when you
* recieve incomplete packets but still want to access the data. This code would
* This simple example does not consider some more complex cases when you
* receive incomplete packets but still want to access the data. This code would
* simply reject incomplete packets as error. A more detailed tutorial for
* incomplete packets will follow, in the mean time, have look at the return
* codes in psycParseRC and their explainations. @see psycParseRC
* incomplete packets will follow. In the mean time, have look at the return
* codes in psycParseRC and their explanations. @see psycParseRC
*/
/** @{ */ // begin of parser group

View File

@ -38,7 +38,7 @@ psycRenderRC psyc_render (psycPacket *packet, char *buffer, size_t buflen);
*/
psycRenderRC psyc_renderList (psycList *list, char *buffer, size_t buflen);
/** @} */ // end of render group
/** @} */ // end of renderer group
#define PSYC_RENDER_H
#endif