Minor documentation fixes to correct formatting and typos.

This commit is contained in:
Dean Camera 2009-03-29 12:59:44 +00:00
parent dc83f73ca3
commit 3aa8620a61
6 changed files with 17 additions and 4 deletions

View file

@ -62,8 +62,8 @@
*
* //...
* // Inside some routine:
* if (Endpoint_Write_CStream_LE(DataBuffer, sizeof(DataBuffer), GlobalNotSet) ==
* ENDPOINT_RWSTREAM_ERROR_CallbackAborted)
* if (Endpoint_Write_Stream_LE(DataBuffer, sizeof(DataBuffer), GlobalNotSet) ==
* ENDPOINT_RWSTREAM_ERROR_CallbackAborted)
* {
* // Do something when the callback aborted the transfer early
* }
@ -81,7 +81,7 @@
enum StreamCallback_Return_ErrorCodes_t
{
STREAMCALLBACK_Continue = 0, /**< Continue sending or receiving the stream. */
STREAMCALLBACK_Abort = 1, /**< Abort the stream send or reciving process. */
STREAMCALLBACK_Abort = 1, /**< Abort the stream send or receiving process. */
};
#endif