]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/if.md
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / doc / book / if.md
index a532dabf8d12d894a7b9f13e7d6081d7b2f2040e..52d0dd888efef1edf3a9c461b5e19111c4415fbf 100644 (file)
@@ -4,7 +4,7 @@ Rust’s take on `if` is not particularly complex, but it’s much more like the
 `if` you’ll find in a dynamically typed language than in a more traditional
 systems language. So let’s talk about it, to make sure you grasp the nuances.
 
-`if` is a specific form of a more general concept, the ‘branch’. The name comes
+`if` is a specific form of a more general concept, the ‘branch’, whose name comes
 from a branch in a tree: a decision point, where depending on a choice,
 multiple paths can be taken.