From 92e44b042242c364c9274e4d2c136ba468981f93 Mon Sep 17 00:00:00 2001 From: Marin Atanasov Nikolov Date: Fri, 15 May 2015 21:46:59 +0300 Subject: [PATCH] docs: Typo fix --- src/doc/trpl/method-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/method-syntax.md b/src/doc/trpl/method-syntax.md index 1527d9cf978df..a166e4acc4eaf 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