Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson committed Dec 7, 2023
1 parent 70e7c16 commit 02b345e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cursorless-engine/src/actions/Actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Snippets } from "../core/Snippets";
import { RangeUpdater } from "../core/updateSelections/RangeUpdater";
import { ModifierStageFactory } from "../processTargets/ModifierStageFactory";
import { TreeSitter } from "../typings/TreeSitter";
import BrakeLine from "./BreakLine";
import { BreakLine } from "./BreakLine";
import { Bring, Move, Swap } from "./BringMoveSwap";
import Call from "./Call";
import Clear from "./Clear";
Expand Down Expand Up @@ -114,7 +114,7 @@ export class Actions implements ActionRecord {
this.modifierStageFactory,
);
joinLines = new JoinLines(this.rangeUpdater);
breakLine = new BrakeLine(this.rangeUpdater);
breakLine = new BreakLine(this.rangeUpdater);
moveToTarget = new Move(this.rangeUpdater);
outdentLine = new OutdentLine(this.rangeUpdater);
pasteFromClipboard = new PasteFromClipboard(this.rangeUpdater, this);
Expand Down

0 comments on commit 02b345e

Please sign in to comment.