]> git.lizzy.rs Git - rust.git/commitdiff
Doc-comment fix; trait names are capitalized
authorCorey Farwell <coreyf@rwell.org>
Thu, 4 Jun 2015 23:45:43 +0000 (19:45 -0400)
committerCorey Farwell <coreyf@rwell.org>
Thu, 4 Jun 2015 23:45:43 +0000 (19:45 -0400)
src/libcore/cell.rs

index d867453008a3fd57023ccea66ee05c29d1783e7c..175dabaf1d2cb999f070e9944b24a3ef6aaf0733 100644 (file)
@@ -38,7 +38,7 @@
 //!
 //! * Introducing inherited mutability roots to shared types.
 //! * Implementation details of logically-immutable methods.
-//! * Mutating implementations of `clone`.
+//! * Mutating implementations of `Clone`.
 //!
 //! ## Introducing inherited mutability roots to shared types
 //!
 //! }
 //! ```
 //!
-//! ## Mutating implementations of `clone`
+//! ## Mutating implementations of `Clone`
 //!
 //! This is simply a special - but common - case of the previous: hiding mutability for operations
 //! that appear to be immutable. The `clone` method is expected to not change the source value, and