diff options
| author | Earl St Sauver <estsauver@gmail.com> | 2015-01-12 02:02:38 -0800 |
|---|---|---|
| committer | Earl St Sauver <estsauver@gmail.com> | 2015-01-17 11:08:02 -0800 |
| commit | 6ab95bdd62095429139f1b24717cbf0e5aa4a235 (patch) | |
| tree | ea86c09f7fe7863d8f13ccf2b836c3127919571f /src/doc/reference.md | |
| parent | 89c4e3792ddc5b45706ea0e919806a248f7a87c3 (diff) | |
| download | rust-6ab95bdd62095429139f1b24717cbf0e5aa4a235.tar.gz rust-6ab95bdd62095429139f1b24717cbf0e5aa4a235.zip | |
s/deriving/derives in Comments/Docs
There are a large number of places that incorrectly refer to deriving in comments, instead of derives. Fixes #20984
Diffstat (limited to 'src/doc/reference.md')
| -rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index c8e31f27b35..b039198cf1d 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2430,7 +2430,7 @@ There are three different types of inline attributes: * `#[inline(always)]` asks the compiler to always perform an inline expansion. * `#[inline(never)]` asks the compiler to never perform an inline expansion. -### Derive +### `derive` The `derive` attribute allows certain traits to be automatically implemented for data structures. For example, the following will create an `impl` for the |
