Skip to content

Commit 6ab85bf

Browse files
author
liuyucai
committed
调整代码格式
1 parent 0206e5f commit 6ab85bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/rtdef.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ typedef int (*init_fn_t)(void);
250250
*
251251
* @def RT_ALIGN(size, align)
252252
* Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
253-
* would return 16.
253+
* would return 16.
254254
* @note align Must be an integer power of 2 or the result will be incorrect
255255
*/
256256
#define RT_ALIGN(size, align) (((size) + (align) - 1) & ~((align) - 1))

0 commit comments

Comments
 (0)