Auto merge of #25214 - acgtyrant:patch-1, r=brson

make the definition of static methods explicit
This commit is contained in:
bors 2015-05-09 07:31:44 +00:00
commit 95400c51c3

View file

@ -129,7 +129,7 @@ circle to any arbitrary size.
# Static methods
You can also define methods that do not take a `self` parameter. Heres a
You can also define static methods that do not take a `self` parameter. Heres a
pattern thats very common in Rust code:
```