Skip to content

Commit ff6bd8a

Browse files
authored
Merge pull request #35 from libdriver/dev
fix: fix doc errors
2 parents c5b722e + d02c096 commit ff6bd8a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.7 (2025-03-06)
2+
3+
## Bug Fixes
4+
5+
- fix doc errors
6+
17
## 1.0.6 (2025-03-05)
28

39
## Bug Fixes

project/stm32f407/usr/inc/mutex.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ uint8_t mutex_unlock(void);
6969

7070
/**
7171
* @brief mutex irq
72-
* @param[in] *irq points to an interrupt funtion
72+
* @param[in] *irq pointer to an interrupt funtion
7373
* @note none
7474
*/
7575
void mutex_irq(uint8_t (*irq)(void));

project/stm32f407/usr/src/mutex.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ uint8_t mutex_unlock(void)
9898

9999
/**
100100
* @brief mutex irq
101-
* @param[in] *irq points to an interrupt funtion
101+
* @param[in] *irq pointer to an interrupt funtion
102102
* @note none
103103
*/
104104
void mutex_irq(uint8_t (*irq)(void))

0 commit comments

Comments
 (0)