From 9913ed06360e4ced7fede2e2d212ba7e8b4cfee5 Mon Sep 17 00:00:00 2001 From: ode79 Date: Mon, 22 Aug 2016 02:20:14 +0100 Subject: [PATCH] Fix typo in 'conditions' --- src/ch03-05-control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03-05-control-flow.md b/src/ch03-05-control-flow.md index e355938..67490a6 100644 --- a/src/ch03-05-control-flow.md +++ b/src/ch03-05-control-flow.md @@ -122,7 +122,7 @@ Running this will print "number was something other than zero". #### Multiple Conditions with `else if` -We can have multiple coniditions by combining `if` and `else` in an `else if` +We can have multiple conditions by combining `if` and `else` in an `else if` expression. For example: Filename: src/main.rs