From f1416b85a2cece532d8de3d84cedb3d71e4edd15 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 22 Dec 2016 13:22:41 -0600 Subject: [PATCH] Fix a typo in the latest til --- ruby/use-a-case-statement-as-a-cond-statement.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/use-a-case-statement-as-a-cond-statement.md b/ruby/use-a-case-statement-as-a-cond-statement.md index eecfc61..c05e1cf 100644 --- a/ruby/use-a-case-statement-as-a-cond-statement.md +++ b/ruby/use-a-case-statement-as-a-cond-statement.md @@ -2,7 +2,7 @@ Many languages come with a feature that usually takes the name _cond statement_. It is essentially another way of writing an _if-elsif-else_ -statement. The first conditional in the _cond statement_ to evaluate to try +statement. The first conditional in the _cond statement_ to evaluate to true will then have its block evaluated. Ruby doesn't have a _cond statement_, but it does have a _case statement_.