doc: spelling check doxygen comments include/

fix misspellings found in doxygen comments used for API docs

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2017-05-02 17:21:56 -07:00 committed by Anas Nashif
commit fc5f2b3832
22 changed files with 52 additions and 52 deletions

View file

@ -263,7 +263,7 @@ int usb_ep_clear_stall(u8_t ep);
/**
* @brief read data from the specified endpoint
*
* This is similar to usb_ep_read, the difference being that, it doesnt
* This is similar to usb_ep_read, the difference being that, it doesn't
* clear the endpoint NAKs so that the consumer is not bogged down by further
* upcalls till he is done with the processing of the data. The caller should
* reactivate ep by invoking usb_ep_read_continue() do so.
@ -288,7 +288,7 @@ int usb_ep_read_wait(u8_t ep, u8_t *data, u32_t max_data_len,
* Clear the endpoint NAK and enable the endpoint to accept more data
* from the host. Usually called after usb_ep_read_wait() when the consumer
* is fine to accept more data. Thus these calls together acts as flow control
* meachanism.
* mechanism.
*
* @param[in] ep Endpoint address corresponding to the one
* listed in the device configuration table

View file

@ -28,9 +28,9 @@
/**
* @file
* @brief standard USB packet stuctures and defines
* @brief standard USB packet structures and defines
*
* This file contains stuctures and defines of the standard USB packets
* This file contains structures and defines of the standard USB packets
*/
#ifndef _USBSTRUCT_H_