1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Fix a typo in the latest til

This commit is contained in:
jbranchaud
2016-12-22 13:22:41 -06:00
parent 577d8e859b
commit f1416b85a2

View File

@@ -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_.