summaryrefslogtreecommitdiff
path: root/README.Coding
diff options
context:
space:
mode:
Diffstat (limited to 'README.Coding')
-rw-r--r--README.Coding2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.Coding b/README.Coding
index 981da6c96c..3b7266e317 100644
--- a/README.Coding
+++ b/README.Coding
@@ -183,7 +183,7 @@ Good Examples::
int *z = NULL;
int ret = 0;
- if ( y < 10 ) {
+ if (y < 10) {
z = malloc(sizeof(int)*y);
if (!z) {
ret = 1;