Skip to content

Commit 80db2d9

Browse files
committed
fix typos
1 parent 7e264aa commit 80db2d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

text/0000-try-trait.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ returns a `Poll`:
9393

9494
```rust
9595
fn foo() -> Poll<T, E> {
96-
let x = bar()?; // propogate error case
96+
let x = bar()?; // propagate error case
9797
}
9898
```
9999

100100
and we might wish to do the same, but in a function returning a `Result`:
101101

102102
```rust
103103
fn foo() -> Result<T, E> {
104-
let x = bar()?; // propogate error case
104+
let x = bar()?; // propagate error case
105105
}
106106
```
107107

0 commit comments

Comments
 (0)