diff options
author | Joseph Adams <whitegolem@gmail.com> | 2014-01-10 18:14:35 +0100 |
---|---|---|
committer | Joseph Adams <whitegolem@gmail.com> | 2014-01-10 18:14:35 +0100 |
commit | c8b12bd824659879038d5d752b13d5c91fad8303 (patch) | |
tree | cd758352088e08b27608da0e6bfe74294350bca3 | |
parent | 0078f973b89f44bd381ba50d2837a17a902ebf7e (diff) |
Added verb ("is") where it was missing
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index 84856b32..99ff0d27 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -92,7 +92,7 @@ int main() { printf("%zu\n", sizeof(int)); // => 4 (on most machines with 4-byte words) - // If the argument of the `sizeof` operator an expression, then its argument + // If the argument of the `sizeof` operator is an expression, then its argument // is not evaluated (except VLAs (see below)). // The value it yields in this case is a compile-time constant. int a = 1; |