about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIsaac Ge <acgtyrant@gmail.com>2015-05-08 22:30:00 +0800
committerIsaac Ge <acgtyrant@gmail.com>2015-05-08 22:30:00 +0800
commit544362c9b802be1d16bdd7ec2a1af2a59407f40e (patch)
treea75368d195efc950b071aba5fb29ea248727df1a
parentb402c43f088882db8a03bfcbb5eb8429ef7def0e (diff)
Update method-syntax.md
make the definition of static methods explicit
-rw-r--r--src/doc/trpl/method-syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md
index ed4e9dd359b..2fee3c6901f 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:
 
 ```