Skip to content

Commit 039be03

Browse files
committed
Clean up reference docs
1 parent 1e082f6 commit 039be03

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

doc/reference.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
735735
fun (@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
741742
let id = fun (@A : Type) (a : A) => a;
742743
id 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
748749
id @Bool false

0 commit comments

Comments
 (0)