From 2d0e7329a501433bacc6dfda569a6f7062b4d06b Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 2 Mar 2016 15:08:35 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a17fbe7a..b556500d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ if true { ``` ```Rust -var x = 10 +var x = 10; while x > 0 { print(x); } @@ -86,7 +86,7 @@ fn main() { # Example 4: Working with custom types and methods -Here's an example of working with Rust. First, the full example, and then we'll break it down: +Here's an more complete example of working with Rust. First the example, then we'll break it into parts: ```Rust #[derive(Debug, Clone)]