Skip to content

Commit e656408

Browse files
committed
Fix links from dyn trait to impl trait
Fixes #80
1 parent f269916 commit e656408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-2018/trait-system/dyn-trait-for-trait-objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ is sometimes slower, and often cannot be used at all when its alternatives can.
3636

3737
Furthermore, with `impl Trait` arriving, "`impl Trait` vs `dyn Trait`" is much
3838
more symmetric, and therefore a bit nicer, than "`impl Trait` vs `Trait`".
39-
`impl Trait` is explained further in the next section.
39+
`impl Trait` is explained [here](impl-trait-for-returning-complex-types-with-ease.html)
4040

4141
In the new edition, you should therefore prefer `dyn Trait` to just `Trait`
4242
where you need a trait object.

0 commit comments

Comments
 (0)