diff --git a/src/doc/trpl/ufcs.md b/src/doc/trpl/ufcs.md index 2d5c742ddb848..2353c63a606af 100644 --- a/src/doc/trpl/ufcs.md +++ b/src/doc/trpl/ufcs.md @@ -89,7 +89,7 @@ not, and so we need to pass an explicit `&b`. The form of UFCS we just talked about: ```rust,ignore -Type::method(args); +Trait::method(args); ``` Is a short-hand. There’s an expanded form of this that’s needed in some