diff options
| author | bors <bors@rust-lang.org> | 2015-05-09 07:31:44 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-05-09 07:31:44 +0000 |
| commit | 95400c51c31877ea4699adc051477edccb5cfbca (patch) | |
| tree | 865d9abb5d06660493db4d921065ef2bc788725d | |
| parent | 7129b259491690c4a159ff3d799457aeb05587a6 (diff) | |
| parent | 544362c9b802be1d16bdd7ec2a1af2a59407f40e (diff) | |
| download | rust-95400c51c31877ea4699adc051477edccb5cfbca.tar.gz rust-95400c51c31877ea4699adc051477edccb5cfbca.zip | |
Auto merge of #25214 - acgtyrant:patch-1, r=brson
make the definition of static methods explicit
| -rw-r--r-- | src/doc/trpl/method-syntax.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md index 861357ebbdc..c5dd25516f3 100644 --- a/src/doc/trpl/method-syntax.md +++ b/src/doc/trpl/method-syntax.md @@ -129,7 +129,7 @@ circle to any arbitrary size. # Static methods -You can also define methods that do not take a `self` parameter. Here’s a +You can also define static methods that do not take a `self` parameter. Here’s a pattern that’s very common in Rust code: ``` |
