aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--sparse.16
1 files changed, 3 insertions, 3 deletions
diff --git a/sparse.1 b/sparse.1
index 01d36b33..fbe1784d 100644
--- a/sparse.1
+++ b/sparse.1
@@ -62,7 +62,7 @@ arithmetic operations other than bitwise operations, and on any conversion of
one restricted type into another, except via a cast that includes
\fB__attribute__((force))\fR.
-__bitwise ends up being a "stronger integer separation". That one
+__bitwise ends up being a "stronger integer separation", one that
doesn't allow you to mix with non-bitwise integers, so now it's much
harder to lose the type by mistake.
@@ -210,7 +210,7 @@ Sparse issues these warnings by default. To turn them off, use
.B \-Winit\-cstring
Warn about initialization of a char array with a too long constant C string.
-If the size of the char array and the length of the string is the same,
+If the size of the char array and the length of the string are the same,
there is no space for the last nul char of the string in the array:
.nf
@@ -354,7 +354,7 @@ Warn about preprocessor conditionals that use the value of an undefined
preprocessor symbol.
Standard C (C99 6.10.1) permits using the value of an undefined preprocessor
-symbol in preprocessor conditionals, and specifies it has have a value of 0.
+symbol in preprocessor conditionals, and specifies it has a value of 0.
However, this behavior can lead to subtle errors.
Sparse does not issue these warnings by default.