Skip to content

Commit d2d894d

Browse files
TylerMSFTTylerMSFT
authored andcommitted
going for 100% acronlix
1 parent a26cca2 commit d2d894d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/c-language/noreturn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The keyword is typically used through the convenience macro, `noreturn`, provide
1414

1515
The primary benefits for using `_Noreturn` (or the equivalent `noreturn`) are making the intention of the function clear in the code for future readers, and detecting unintentionally unreachable code.
1616

17-
A function marked `noreturn` should not include a return type because it doesn't return a value to the caller. It should be `void`.
17+
A function marked `noreturn` shouldn't include a return type because it doesn't return a value to the caller. It should be `void`.
1818

1919
## Example using `noreturn` macro and `_Noreturn `keyword
2020

0 commit comments

Comments
 (0)