Skip to content

Commit f159cda

Browse files
fix: spelling
1 parent 31e8616 commit f159cda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/actions/drag_mover.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const UNCONSTRAINED_MOVE_DISTANCE = 20;
2323

2424
/**
2525
* An experimental implementation of Mover that uses a dragger to
26-
* perform unconstraind movement.
26+
* perform unconstrained movement.
2727
*/
2828
export class DragMover extends Mover {
2929
/**

src/actions/mover.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class Mover {
7171
allowCollision: true,
7272
},
7373
{
74-
name: 'Move right unconstraind',
74+
name: 'Move right unconstrained',
7575
preconditionFn: (workspace) => this.isMoving(workspace),
7676
callback: (workspace) => this.moveConstrained(workspace /* , ... */),
7777
keyCodes: [KeyCodes.RIGHT],
@@ -103,7 +103,7 @@ export class Mover {
103103
],
104104
},
105105
{
106-
name: 'Move right, unconstraind',
106+
name: 'Move right, unconstrained',
107107
preconditionFn: (workspace) => this.isMoving(workspace),
108108
callback: (workspace) => this.moveUnconstrained(workspace, 1, 0),
109109
keyCodes: [

0 commit comments

Comments
 (0)