Add parentheses

This commit is contained in:
tbeu 2017-10-24 20:02:55 +02:00
parent 969dba4558
commit 421d5df00a
2 changed files with 8 additions and 8 deletions

View File

@ -1332,7 +1332,7 @@ int main() {
tpl_load(tn, TPL_FILE, "/tmp/fixed.tpl");
tpl_unpack(tn,0); /* unpack all 10 elements at once */
tpl_free(tn);
/* now do something with x[0]...x[9].. (not shown */
/* now do something with x[0]...x[9].. (not shown) */
}</tt></pre>
</div></div>
<div class="paragraph"><p>For completeness, let&#8217;s also see how to unpack a variable-length integer array.</p></div>

View File

@ -395,7 +395,7 @@ int main() {
tpl_load(tn, TPL_FILE, "/tmp/fixed.tpl");
tpl_unpack(tn,0); /* unpack all 10 elements at once */
tpl_free(tn);
/* now do something with x[0]...x[9].. (not shown */
/* now do something with x[0]...x[9].. (not shown) */
}
--------------------------------------------------------------------------------