From f5919c2a8c24db695523ec79b33d27473269ae31 Mon Sep 17 00:00:00 2001 From: Annie Kao Date: Wed, 12 Jan 2022 17:06:46 -0500 Subject: [PATCH] Update code block in tutorial --- .../tutorials/pattern-design/completing-the-neck-opening/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md b/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md index 16683ad6377..ca2bb88259e 100644 --- a/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md +++ b/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md @@ -14,7 +14,7 @@ as it is, and simply chose to not show it. To accomplish this, update the code and add this one line: ```js -paths.neck = new Path() +paths.quarterNeck = new Path() .move(points.right) .curve(points.rightCp1, points.bottomCp2, points.bottom) .setRender(false) // <== Add this line