From ce0bf81de962006113816065ee97c9afb61c2669 Mon Sep 17 00:00:00 2001 From: Marla Schulz Date: Mon, 25 Sep 2023 12:33:20 -0600 Subject: [PATCH] Fix grammar, see: https://github.com/phetsims/alpenglow/issues/1 --- js/cag/ClippableFace.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/cag/ClippableFace.ts b/js/cag/ClippableFace.ts index 8c5979d9..b866ffb9 100644 --- a/js/cag/ClippableFace.ts +++ b/js/cag/ClippableFace.ts @@ -187,12 +187,12 @@ type ClippableFace = { toEdgedFace(): EdgedFace; /** - * Converts the face to a edged-clipped face (inspecting the edges) + * Converts the face to an edged-clipped face (inspecting the edges) */ toEdgedClippedFace( minX: number, minY: number, maxX: number, maxY: number ): EdgedClippedFace; /** - * Converts the face to a edged-clipped face (without inspecting the edges) + * Converts the face to an edged-clipped face (without inspecting the edges) */ toEdgedClippedFaceWithoutCheck( minX: number, minY: number, maxX: number, maxY: number ): EdgedClippedFace;