From bd334982bd6d544e95fb11b24d8fbdfe40312a59 Mon Sep 17 00:00:00 2001 From: Daan Rijks Date: Wed, 4 Oct 2023 20:38:58 +0200 Subject: [PATCH] README.md: Fix missing words (#380) Closes #374 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc347f18e..3bd07f800 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ Advantages: - `ON` clause is attached directly to the relevant join, so you never need to worry about how they're ordered, nor will you ever run into bugs where the `on` clause is on the wrong `JOIN` -- The `ON` clause lambda will all the available tables in it. This forbids +- The `ON` clause lambda will exclusively have all the available tables in it. This forbids runtime errors where an `ON` clause refers to a table that isn't in scope yet. - You can join on a table twice, and the aliases work out fine with the `ON` clause.