From 65d559eba0670c5de6278c649221461a2b9f62d7 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Wed, 1 Mar 2023 23:54:37 -0700 Subject: [PATCH] Minor wording updates in a comment, see https://github.com/phetsims/quadrilateral/issues/398 --- js/quadrilateral/view/CornerGuideNode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/quadrilateral/view/CornerGuideNode.ts b/js/quadrilateral/view/CornerGuideNode.ts index 9ee1b86a..4f6266bd 100644 --- a/js/quadrilateral/view/CornerGuideNode.ts +++ b/js/quadrilateral/view/CornerGuideNode.ts @@ -146,7 +146,7 @@ class CornerGuideNode extends Node { this.visible = visible; } ); - // When right angle, display the RightAngleIndicator, otherwise the arcs representing angle are shown. + // When at a right angle, display the RightAngleIndicator, otherwise the arcs representing angles are shown. vertex1.angleProperty.link( angle => { arcNode.visible = !shapeModel.isRightAngle( angle! );