From ded888422031eeb8fac730e454162277a3f7f642 Mon Sep 17 00:00:00 2001 From: russtack <116985265+russtack@users.noreply.github.com> Date: Mon, 14 Aug 2023 01:52:44 -0400 Subject: [PATCH] Update 3-event-handling.md Beacause corrected to Because --- data/part-13/3-event-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-13/3-event-handling.md b/data/part-13/3-event-handling.md index b0055262b..9beab4df6 100644 --- a/data/part-13/3-event-handling.md +++ b/data/part-13/3-event-handling.md @@ -227,7 +227,7 @@ leftText.textProperty().addListener(new ChangeListener() { -In the previous example the changes being observed are in the text of the text field. Beacause text is in string format we have provided string as the type for the handler interface. As before, we can also express this code in a more compact form. +In the previous example the changes being observed are in the text of the text field. Because text is in string format we have provided string as the type for the handler interface. As before, we can also express this code in a more compact form.