about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 73cd771114b..a2bdd66b0c2 100644
--- a/src/doc/trpl/method-syntax.md
+++ b/src/doc/trpl/method-syntax.md
@@ -125,7 +125,7 @@ fn grow(&self, increment: f64) -> Circle {
 ```
 
 We just say we’re returning a `Circle`. With this method, we can grow a new
-`circle` to any arbitrary size.
+`Circle` to any arbitrary size.
 
 # Associated functions