Skip to content

Commit 42c4dd0

Browse files
stinosdpgeorge
authored andcommitted
py/nlr: Fix missing trailing characters in comments in nlr.c
1 parent b184b6a commit 42c4dd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py/nlr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
#include "py/mpstate.h"
2828

2929
#if !MICROPY_NLR_SETJMP
30-
// When not using setjmp, nlr_push_tail is called from inline asm so needs special c
30+
// When not using setjmp, nlr_push_tail is called from inline asm so needs special care
3131
#if MICROPY_NLR_X86 && MICROPY_NLR_OS_WINDOWS
32-
// On these 32-bit platforms make sure nlr_push_tail doesn't have a leading undersco
32+
// On these 32-bit platforms make sure nlr_push_tail doesn't have a leading underscore
3333
unsigned int nlr_push_tail(nlr_buf_t *nlr) asm("nlr_push_tail");
3434
#else
35-
// LTO can't see inside inline asm functions so explicitly mark nlr_push_tail as use
35+
// LTO can't see inside inline asm functions so explicitly mark nlr_push_tail as used
3636
__attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr);
3737
#endif
3838
#endif

0 commit comments

Comments
 (0)