From 9e5378491e1801d4fbd95fa8e16026f1f22ca063 Mon Sep 17 00:00:00 2001 From: "Ricardo M." Date: Thu, 17 Oct 2024 12:19:09 +0200 Subject: [PATCH] chore(typo): Fix small typo in AbstractAnchor.ts --- packages/module/src/anchors/AbstractAnchor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/module/src/anchors/AbstractAnchor.ts b/packages/module/src/anchors/AbstractAnchor.ts index f11d0941..3e8fd5ca 100644 --- a/packages/module/src/anchors/AbstractAnchor.ts +++ b/packages/module/src/anchors/AbstractAnchor.ts @@ -5,7 +5,7 @@ export default abstract class AbstractAnchor implements A protected readonly owner: E; // Consumption of the offset depends on the concrete anchor implementation but it is - // indended that the reference point is moved by the offset relative to the point location + // intended that the reference point is moved by the offset relative to the point location // in the direction of the opposing reference point. protected readonly offset: number;