about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJack Wilson <jack.wilson.v@gmail.com>2015-09-03 20:51:08 -0700
committerJack Wilson <jack.wilson.v@gmail.com>2015-09-03 20:51:08 -0700
commitf44fbf08f95e86e0eabdb492e8d003ccfcefa258 (patch)
tree5b8f0091000e54031d68141bc53db64af80c3de3 /src
parent2548e2ee58949667ccf27e1d842242ed21313b77 (diff)
downloadrust-f44fbf08f95e86e0eabdb492e8d003ccfcefa258.tar.gz
rust-f44fbf08f95e86e0eabdb492e8d003ccfcefa258.zip
Capitalize circle reference
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