File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -729,20 +729,21 @@ id Type S32
729729
730730### Implicit parameters
731731
732- Function parameters can be made * implicit * by prefixing them with ` @ ` :
732+ Function parameters can be made _ implicit _ by prefixing them with ` @ ` :
733733
734734``` fathom
735735fun (@A : Type) => A
736736```
737737
738- Implicit parameters will be filled in automatically when they can be inferred by the types of other terms:
738+ Implicit parameters will be filled in automatically when they can be inferred by
739+ the types of other terms:
739740
740741``` fathom
741742let id = fun (@A : Type) (a : A) => a;
742743id false
743744```
744745
745- Implicit parameters can be passed explictly by prefixing the argument with ` @ ` :
746+ Implicit arguments can be passed explicitly by prefixing the argument with ` @ ` :
746747
747748``` fathom
748749id @Bool false
You can’t perform that action at this time.
0 commit comments