Skip to content

Commit bc1d2f2

Browse files
committed
Fix typos
1 parent 506b375 commit bc1d2f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fn/diverging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ As opposed to all the other types, this one cannot be instantiated, because the
1212
set of all possible values this type can have is empty. Note, that it is
1313
different from the `()` type, which has exactly one possible value.
1414

15-
For example, this functions returns as usual, although there is no information
15+
For example, this function returns as usual, although there is no information
1616
in the return value.
1717

1818
```rust
@@ -22,7 +22,7 @@ fn some_fn() {
2222

2323
fn main() {
2424
let a: () = some_fn();
25-
println!("This functions returns and you can see this line.")
25+
println!("This function returns and you can see this line.")
2626
}
2727
```
2828

0 commit comments

Comments
 (0)