Lines Matching refs:comments
68 Outside of comments, documentation and except in Kconfig, spaces are never
154 comments on.
451 Generally, you want your comments to tell WHAT your code does, not HOW.
452 Also, try to avoid putting comments inside a function body: if the
455 small comments to note or warn about something particularly clever (or
456 ugly), but try to avoid excess. Instead, put the comments at the head
464 Linux style for comments is the C89 "/* ... */" style.
465 Don't use C99-style "// ..." comments.
467 The preferred style for long (multi-line) comments is:
471 * comments in the Linux kernel source code.
479 comments is a little different.