From 9e6df2827721aa2ddba33a409cdda109b33cf232 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Thu, 11 Oct 2012 10:38:07 -0700 Subject: [PATCH] manual: capitalize 'Copy'. --- doc/rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rust.md b/doc/rust.md index 5707602ec9b..a4bbcc14a08 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -929,7 +929,7 @@ with `int`, and require the closure parameter to have type Since a parameter type is opaque to the generic function, the set of operations that can be performed on it is limited. Values of parameter type can always be moved, but they can only be copied when the -parameter is given a [`copy` bound](#type-kinds). +parameter is given a [`Copy` bound](#type-kinds). ~~~~ fn id(x: T) -> T { x }