fix function description typo in usbd_core.c
Previously - ``` /** * @brief USBD_DeInit * Re-Initialize the device library * @param pdev: device instance * @retval status: status */ ``` Afterwards - ``` /** * @brief USBD_DeInit * De-Initialize the device library * @param pdev: device instance * @retval status: status */
This commit is contained in:
parent
7b869e0519
commit
20b61bcbed
|
@ -142,7 +142,7 @@ USBD_StatusTypeDef USBD_Init(USBD_HandleTypeDef *pdev,
|
|||
|
||||
/**
|
||||
* @brief USBD_DeInit
|
||||
* Re-Initialize the device library
|
||||
* De-Initialize the device library
|
||||
* @param pdev: device instance
|
||||
* @retval status: status
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue