Fixes #3019 - Documentation tweak to default argument meaning.

This commit is contained in:
Jeremy Ashkenas 2013-10-20 18:08:28 -03:00
parent a5513c45d0
commit f3c5cc6774
1 changed files with 2 additions and 2 deletions

View File

@ -437,8 +437,8 @@ Expressions
</p>
<%= code_for('functions', 'cube(5)') %>
<p>
Functions may also have default values for arguments. Override the default
value by passing a non-null argument.
Functions may also have default values for arguments, which will be used
if the incoming argument is missing (<tt>null</tt> or <tt>undefined</tt>).
</p>
<%= code_for('default_args', 'fill("cup")') %>