about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 14dfc884122..6f6a86042f3 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -393,7 +393,7 @@ useful of which is [`format!`][fmt], a `sprintf`-like text formatter that you
 will often see in examples, and its related family of macros: `print!`,
 `println!`, and `write!`.
 
-`format!` draws syntax from python, but contains many of the same principles
+`format!` draws syntax from Python, but contains many of the same principles
 that [printf][pf] has. Unlike printf, `format!` will give you a compile-time
 error when the types of the directives don't match the types of the arguments.