Commit cc3496bf authored by Wei Ming Chen's avatar Wei Ming Chen Committed by Jonathan Corbet
Browse files

docs: Use fallthrough pseudo-keyword



Replace /* fall through */ comment with fallthrough, make
it align with original process/coding-style.rst

Signed-off-by: default avatarWei Ming Chen <jj251510319013@gmail.com>
Link: https://lore.kernel.org/r/20210515155142.2490-1-jj251510319013@gmail.com


Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent db1ea668
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ i ``case``. Un esempio.:
	case 'K':
	case 'k':
		mem <<= 10;
		/* fall through */
		fallthrough;
	default:
		break;
	}
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ Linux 内核代码风格
	case 'K':
	case 'k':
		mem <<= 10;
		/* fall through */
		fallthrough;
	default:
		break;
	}