]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/src/ch18-03-pattern-syntax.md
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / doc / book / src / ch18-03-pattern-syntax.md
index abec505c94b8c7849a0a0d746d512fb3974473d1..6fedc85c6847ccb14bb3c0c764eab6ace9e90849 100644 (file)
@@ -344,7 +344,7 @@ warning because that could be a bug. But sometimes it’s useful to create a
 variable you won’t use yet, such as when you’re prototyping or just starting a
 project. In this situation, you can tell Rust not to warn you about the unused
 variable by starting the name of the variable with an underscore. In Listing
-18-20, we create two unused variables, but when we run this code, we should
+18-20, we create two unused variables, but when we compile this code, we should
 only get a warning about one of them.
 
 <span class="filename">Filename: src/main.rs</span>