diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-05-16 14:15:37 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-05-16 22:55:08 +1000 |
| commit | cd2eb4701fc16e7acd6934759be043b1f7e5586d (patch) | |
| tree | 056658f88fad7d623ef7843e51992dc8c258050d /doc/tutorial.md | |
| parent | 2329651770d026ff422ad40dabe576965f46c852 (diff) | |
| download | rust-cd2eb4701fc16e7acd6934759be043b1f7e5586d.tar.gz rust-cd2eb4701fc16e7acd6934759be043b1f7e5586d.zip | |
syntax: implement #[deriving(DeepClone)]. Fixes #6514.
Diffstat (limited to 'doc/tutorial.md')
| -rw-r--r-- | doc/tutorial.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md index 7ee78d622f3..a01423d3fd3 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -2308,8 +2308,8 @@ enum ABC { A, B, C } ~~~ The full list of derivable traits is `Eq`, `TotalEq`, `Ord`, -`TotalOrd`, `Encodable` `Decodable`, `Clone`, `IterBytes`, `Rand` and -`ToStr`. +`TotalOrd`, `Encodable` `Decodable`, `Clone`, `DeepClone`, +`IterBytes`, `Rand` and `ToStr`. # Modules and crates |
