diff options
| author | bors <bors@rust-lang.org> | 2015-06-05 11:59:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-05 11:59:34 +0000 |
| commit | 19a39710c494d9300ffdc4e3f40dfda0ef62f7ba (patch) | |
| tree | f2d56fe4efeb621e238b7d98424169b9f9fd5e6d /src/libcore | |
| parent | ef72938a8b9171abc5c4b463d3e8345dc0e603a6 (diff) | |
| parent | eb6a70cbabbc74699e2b0331fef91be1fadad1bd (diff) | |
| download | rust-19a39710c494d9300ffdc4e3f40dfda0ef62f7ba.tar.gz rust-19a39710c494d9300ffdc4e3f40dfda0ef62f7ba.zip | |
Auto merge of #26028 - steveklabnik:rollup, r=steveklabnik
- Successful merges: #25925, #26001, #26010, #26011, #26017, #26020 - Failed merges:
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/cell.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index d867453008a..175dabaf1d2 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -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 //! @@ -109,7 +109,7 @@ //! } //! ``` //! -//! ## 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 |
