From f09c167a03dd5826e32686e15db760ba6bcc2cb6 Mon Sep 17 00:00:00 2001 From: Shaun Hamilton Date: Sat, 5 Feb 2022 14:12:18 +0200 Subject: [PATCH] fix(curriculum): correct hint text for step-093 penguin (#45023) --- .../learn-css-transforms-by-building-a-penguin/step-093.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/step-093.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/step-093.md index 6f87168a90..ecbd758cc6 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/step-093.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-transforms-by-building-a-penguin/step-093.md @@ -13,7 +13,7 @@ Give the `.arm` elements top -left, -right, and bottom-right corners a radius of # --hints-- -You should give `.arm` a `border-radius` of `30% 30% 120% 30%`. +You should give `.arm` a `border-radius` of `30% 30% 30% 120%`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.arm')?.borderTopLeftRadius, '30%');