From f93eea663359d420ce96e1f8cd2ba5ebd2714981 Mon Sep 17 00:00:00 2001 From: zanninso <47645687+zanninso@users.noreply.github.com> Date: Thu, 27 Apr 2023 14:49:05 +0000 Subject: [PATCH] docs: using the term entirely inside unstead of inside (#1996) --- subjects/mouse-trap/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/mouse-trap/README.md b/subjects/mouse-trap/README.md index 714c9c69..70db3f2f 100644 --- a/subjects/mouse-trap/README.md +++ b/subjects/mouse-trap/README.md @@ -9,7 +9,7 @@ Create the following functions: - `moveCircle`: make it fire when the mouse moves, and get the last circle created and makes it move along with the mouse. -- `setBox`: which creates a box with the class `box` in the center of the page. When a circle is inside that box, it has to be purple (use the CSS global variable `var(--purple)` as its `background`). Once a circle enters the box, it is trapped inside and cannot escape. +- `setBox`: which creates a box with the class `box` in the center of the page. When a circle is entirely inside that box, it has to be purple (use the CSS global variable `var(--purple)` as its `background`). Once a circle enters the box, it is trapped inside and cannot escape. > Hint: Be careful, a circle cannot overlap the box which has walls of `1px`. It has to be trapped **strictly** inside.