about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-16 07:01:32 +0000
committerbors <bors@rust-lang.org>2015-05-16 07:01:32 +0000
commit15c18e725c5fcdfce1ebeb82344121a3a381237a (patch)
tree8460393b0e2a57bbdaa72842fc78d9d1833a63a5
parent7dbee36e17dd535b2a507a8ca1b837fe83b207b8 (diff)
parent92e44b042242c364c9274e4d2c136ba468981f93 (diff)
downloadrust-15c18e725c5fcdfce1ebeb82344121a3a381237a.tar.gz
rust-15c18e725c5fcdfce1ebeb82344121a3a381237a.zip
Auto merge of #25450 - dnaeon:docs, r=alexcrichton
-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 1527d9cf978..a166e4acc4e 100644
--- a/src/doc/trpl/method-syntax.md
+++ b/src/doc/trpl/method-syntax.md
@@ -156,7 +156,7 @@ fn main() {
 
 This ‘associated function’ builds a new `Circle` for us. Note that associated
 functions are called with the `Struct::function()` syntax, rather than the
-`ref.method()` syntax. Some other langauges call associated functions ‘static
+`ref.method()` syntax. Some other languages call associated functions ‘static
 methods’.
 
 # Builder Pattern