From e00b41b96918d6017ca49e5f98dbe36eb19eaf03 Mon Sep 17 00:00:00 2001 From: Andrew Broz Date: Wed, 2 Nov 2016 17:02:12 -0500 Subject: [PATCH] Grammar - why clause SV order --- types & grammar/ch5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types & grammar/ch5.md b/types & grammar/ch5.md index 7aa277f..371a779 100644 --- a/types & grammar/ch5.md +++ b/types & grammar/ch5.md @@ -47,7 +47,7 @@ In fact, if you've done much code experimenting in your console (or in a JavaScr But what the console prints out for the completion value isn't something we can use inside our program. So how can we capture the completion value? -That's a much more complicated task. Before we explain *how*, let's explore *why* would you want to do that? +That's a much more complicated task. Before we explain *how*, let's explore *why* you would want to do that. We need to consider other types of statement completion values. For example, any regular `{ .. }` block has a completion value of the completion value of its last contained statement/expression.