Module Name: src Committed By: rillig Date: Sun Jul 26 09:22:15 UTC 2020
Modified Files: src/share/misc: style Log Message: style: fix typo about enum constants being capitalized To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/share/misc/style Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/misc/style diff -u src/share/misc/style:1.54 src/share/misc/style:1.55 --- src/share/misc/style:1.54 Mon Jan 28 17:29:44 2019 +++ src/share/misc/style Sun Jul 26 09:22:15 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: style,v 1.54 2019/01/28 17:29:44 christos Exp $ */ +/* $NetBSD: style,v 1.55 2020/07/26 09:22:15 rillig Exp $ */ /* * The revision control tag appears first, with a blank line after it. @@ -30,7 +30,7 @@ #include <sys/cdefs.h> __COPYRIGHT("@(#) Copyright (c) 2008\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: style,v 1.54 2019/01/28 17:29:44 christos Exp $"); +__RCSID("$NetBSD: style,v 1.55 2020/07/26 09:22:15 rillig Exp $"); /* * VERY important single-line comments look like this. @@ -147,7 +147,7 @@ do { \ #define DOUBLE(x) ((x) * 2) -/* Enum types are capitalized. No comma on the last element. */ +/* Enum constants are capitalized. No comma on the last element. */ enum enumtype { ONE, TWO