diff --git a/src/doc/trpl/traits.md b/src/doc/trpl/traits.md index 2ef9e7ca22e6..6d31b230749a 100644 --- a/src/doc/trpl/traits.md +++ b/src/doc/trpl/traits.md @@ -1,5 +1,8 @@ % Traits +A trait is a language feature that tells the Rust compiler about +functionality a type must provide. + Do you remember the `impl` keyword, used to call a function with [method syntax][methodsyntax]?