Browse code

vsrc_life: fix comment in parse_rule()

Stefano Sabatini authored on 2011/12/05 07:49:03
Showing 1 changed files
... ...
@@ -108,8 +108,8 @@ static int parse_rule(uint16_t *born_rule, uint16_t *stay_rule,
108 108
         if (*p)
109 109
             goto error;
110 110
     } else {
111
-        /* parse the rule as a number, expressed in the form STAY|(BORN<<9),
112
-         * where STAY and DEATH encode the corresponding 9-bits rule */
111
+        /* parse rule as a number, expressed in the form STAY|(BORN<<9),
112
+         * where STAY and BORN encode the corresponding 9-bits rule */
113 113
         long int rule = strtol(rule_str, &tail, 10);
114 114
         if (*tail)
115 115
             goto error;