From 4431a027e52c50ce1d56b8caf6875d49172faa53 Mon Sep 17 00:00:00 2001 From: Himanshu Singh <78968566+Himanshu1801@users.noreply.github.com> Date: Sat, 28 Oct 2023 12:48:28 +0530 Subject: [PATCH] Update utils.mjs fixed typo transorms -> transforms on line 857 and transorm -> transform on line 881 --- packages/core/src/utils.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/utils.mjs b/packages/core/src/utils.mjs index 170106df7a6..4cce822da71 100644 --- a/packages/core/src/utils.mjs +++ b/packages/core/src/utils.mjs @@ -854,7 +854,7 @@ function matrixTransform(transformationType, matrix, values) { /** * Combines an array of (SVG) transforms into a single matrix transform * - * @param {array} transorms - The list of transforms to combine + * @param {array} transforms - The list of transforms to combine * @return {string} matrixTransform - The combined matrix transform */ export function combineTransforms(transforms = []) { @@ -878,7 +878,7 @@ export function combineTransforms(transforms = []) { /** * Applies and (SVG) transform to a point's coordinates (x and y) * - * @param {string} transorm - The transform to apply + * @param {string} transform - The transform to apply * @param {Point} point - The point of which to update the coordinates * @return {Point} point - The point with the transform applied to its coordinates */