Skip to content

Commit f46d2a0

Browse files
authored
Update instructions.md function name to match provided template (#2259)
1 parent e2a174a commit f46d2a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/coordinate-transformation/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Combine two transformation functions to perform a repeatable transformation. Thi
3333
```javascript
3434
const moveCoordinatesRight2Px = translate2d(2, 0);
3535
const doubleCoordinates = scale2d(2, 2);
36-
const composedTransformations = composeTransformation(
36+
const composedTransformations = composeTransform(
3737
moveCoordinatesRight2Px,
3838
doubleCoordinates,
3939
);

0 commit comments

Comments
 (0)