From e985d3fbcec17b0109fc4172a44e1409ff9a9492 Mon Sep 17 00:00:00 2001 From: oumaimafisaoui Date: Mon, 19 Aug 2024 20:52:07 +0100 Subject: [PATCH] Docs(DPxAI): Modify subject for first-wink --- subjects/DPxAI/first-wink/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/subjects/DPxAI/first-wink/README.md b/subjects/DPxAI/first-wink/README.md index a615656f5..45a9ce801 100644 --- a/subjects/DPxAI/first-wink/README.md +++ b/subjects/DPxAI/first-wink/README.md @@ -53,14 +53,13 @@ button { #### Task 2: -Select the button with id `button` in your JavaScript file that will allow the user to control the robot’s left eye. +Select the button in your JavaScript file that will allow the user to control the robot’s left eye. ```js // Select the button element using its ID so we can interact with it in our JavaScript -//Example of selecting a button with "small" as an id - -const myButton = document.querySelector("#small"); +//Example of selecting a button called myButton +const myButton = document.querySelector("button"); ``` **`Prompt Example:`**