Skip to content

Commit 506b20d

Browse files
Fix typo: variables->variable
1 parent acec836 commit 506b20d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

chapter11_variables.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ <h2 id='error_reporting'>Error Reporting</h2> <hr/>
475475

476476
<p>We'll modify <code>lval_err</code> to act in the same way as <code>printf</code>, taking in a format string, and after that a variable number of arguments to match into this string.</p>
477477

478-
<p>To declare that a function takes variables arguments in the type signature you use the special syntax of ellipsis <code>...</code>, which represent the rest of the arguments.</p>
478+
<p>To declare that a function takes variable arguments in the type signature you use the special syntax of ellipsis <code>...</code>, which represent the rest of the arguments.</p>
479479

480480
<pre><code data-language='c'>lval* lval_err(char* fmt, ...);</code></pre>
481481

0 commit comments

Comments
 (0)