From cb6a69d3f17a32e3357a538267fdfb8de5a88373 Mon Sep 17 00:00:00 2001 From: SmashedFrenzy16 <68993968+SmashedFrenzy16@users.noreply.github.com> Date: Thu, 29 Dec 2022 17:38:33 +0000 Subject: [PATCH] Update README.md --- 3-terrarium/3-intro-to-DOM-and-closures/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-terrarium/3-intro-to-DOM-and-closures/README.md b/3-terrarium/3-intro-to-DOM-and-closures/README.md index 8db26e0b..87194bbb 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/README.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/README.md @@ -116,7 +116,7 @@ In addition, the terrariumElement that is passed to this function is assigned a ## The Pointerdrag function -The terrariumElement is ready to be dragged around; when the `onpointerdown` event is fired, the function pointerDrag is invoked. Add that function right under this line: `terrariumElement.onpointerdown = pointerDrag;`: +The `terrariumElement` is ready to be dragged around; when the `onpointerdown` event is fired, the function `pointerDrag` is invoked. Add that function right under this line: `terrariumElement.onpointerdown = pointerDrag;`: ### Task