Skip to content

Commit

Permalink
Update src/trait-bounds.md
Browse files Browse the repository at this point in the history
Co-authored-by: Travis Cross <tc@traviscross.com>
  • Loading branch information
chorman0773 and traviscross authored Oct 21, 2024
1 parent 9e9cd44 commit 14d9df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trait-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ certain common cases:
`trait A { type B: Copy; }` is equivalent to
`trait A where Self::B: Copy { type B; }`.

r[bound.satisfication]
r[bound.satisfaction]
Bounds on an item must be satisfied when using the item. When type checking and
borrow checking a generic item, the bounds can be used to determine that a
trait is implemented for a type. For example, given `Ty: Trait`
Expand Down

0 comments on commit 14d9df2

Please sign in to comment.