We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc3073 commit 5d4b803Copy full SHA for 5d4b803
v0.3/handbook/libraries/stdlib.md
@@ -423,8 +423,8 @@ commit
423
<tr>
424
<td>
425
<ul class="arglist">
426
- <li><strong>a</strong> - the number to be formatted</li>
427
- <li><strong>b</strong> - the number of decimal places to which `a` will be formatted</li>
+ <li><strong>value</strong> - the number to be formatted</li>
+ <li><strong>to</strong> - the number of decimal places to which `a` will be formatted</li>
428
</ul>
429
</td>
430
@@ -434,7 +434,7 @@ pi represented as the string "3.14"
434
search
435
circumference = 6
436
diameter = 1.910
437
- pi = math/to-fixed[a: (circumference / diameter), b: 2]
+ pi = math/to-fixed[value: (circumference / diameter), to: 2]
438
439
bind
440
[#ui/text text: pi]
0 commit comments