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:
Minhaj Uddin Ahmad 2023-10-13 13:28:46 +06:00 committed by Ali LABBENE
parent 7b869e0519
commit 20b61bcbed
1 changed files with 1 additions and 1 deletions

View File

@ -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
*/