From 1d18be7b3dc3871f42d8106019778c1ff0751fba Mon Sep 17 00:00:00 2001 From: ivx <57248090+files-systems@users.noreply.github.com> Date: Sat, 14 Nov 2020 12:10:32 +0800 Subject: [PATCH] Update README.md befoore -> before --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0517ca7..635287f 100644 --- a/README.md +++ b/README.md @@ -2909,7 +2909,7 @@ fn main() { This prints `56`. `break counter;` means "break and return the value of counter". And because the whole block starts with `let`, `my_number` gets the value. -Now that we know how to use loops, here is a better solution to our `match` problem with colours from befoore. It is a better solution because we want to compare everything, and a `for` loop looks at every item. +Now that we know how to use loops, here is a better solution to our `match` problem with colours from before. It is a better solution because we want to compare everything, and a `for` loop looks at every item. ```rust fn match_colours(rbg: (i32, i32, i32)) {