Update method-syntax.md

make the definition of static methods explicit
This commit is contained in:
Isaac Ge 2015-05-08 22:30:00 +08:00
parent b402c43f08
commit 544362c9b8

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:
```