Skip to content

Commit 49f9b34

Browse files
committed
review
1 parent 7c659ad commit 49f9b34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
- [Traits](items/traits.md)
3636
- [Implementations](items/implementations.md)
3737
- [External blocks](items/external-blocks.md)
38-
- [Type and lifetime parameters](items/generics.md)
38+
- [Generic parameters](items/generics.md)
3939
- [Associated Items](items/associated-items.md)
4040
- [Visibility and Privacy](visibility-and-privacy.md)
4141

src/items/generics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ referred to with path syntax.
7070
> &nbsp;&nbsp; _ForLifetimes_<sup>?</sup> [_Type_] `:` [_TypeParamBounds_]<sup>?</sup>
7171
>
7272
> _ForLifetimes_ :\
73-
> &nbsp;&nbsp; `for` `<` [_LifetimeParams_](#type-and-lifetime-parameters) `>`
73+
> &nbsp;&nbsp; `for` `<` [_LifetimeParams_](#generic-parameters) `>`
7474
7575
*Where clauses* provide another way to specify bounds on type and lifetime
7676
parameters as well as a way to specify bounds on types that aren't type
@@ -130,7 +130,7 @@ struct Foo<#[my_flexible_clone(unbounded)] H> {
130130
[const contexts]: ../const_eval.md#const-context
131131
[function pointers]: ../types/function-pointer.md
132132
[raw pointers]: ../types/pointer.md#raw-pointers-const-and-mut
133-
[references]: ../types/pointer.md#shared-references
133+
[references]: ../types/pointer.md#shared-references-
134134
[repeat expressions]: ../expressions/array-expr.md
135135
[`Clone`]: ../special-types-and-traits.md#clone
136136
[`Copy`]: ../special-types-and-traits.md#copy

0 commit comments

Comments
 (0)