From 86b4507cca820099a4d2490f486981860dc1d859 Mon Sep 17 00:00:00 2001 From: Naja Melan Date: Thu, 24 Apr 2014 06:33:37 -0700 Subject: [PATCH] i think this is what was meant to be there, please check --- SC2015.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2015.md b/SC2015.md index 00d8474..c8072e6 100644 --- a/SC2015.md +++ b/SC2015.md @@ -15,7 +15,7 @@ ### Rationale: -It's common to use `A && B` to run `B` when `A` is true, and `A || C` to run `C` is `A` is false. +It's common to use `A && B` to run `B` when `A` is true, and `A || C` to run `C` when `A` is false. However, combining them into `A && B || C` is not the same as `if A then B else C`.