Skip to content

Commit

Permalink
Typo: postion=>position
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Oct 25, 2024
1 parent 531d473 commit 9140901
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class LandscapeNavigation {
}

public goToDependent(): void {
const [levelIndex, elementIndex, moduleIndex] = this.findDependentPostion();
const [levelIndex, elementIndex, moduleIndex] = this.findDependentPosition();
this.updateCursor(levelIndex, elementIndex, moduleIndex);
}

Expand Down Expand Up @@ -144,7 +144,7 @@ export class LandscapeNavigation {
return [elementIndex, moduleIndex];
}

private findDependentPostion(): [number, number, number] {
private findDependentPosition(): [number, number, number] {
let [levelIndex, elementIndex, moduleIndex] = this.setValues(this.currentLevel, this.currentElement, this.currentModule);

while (levelIndex < this.levels.length - 1) {
Expand Down

0 comments on commit 9140901

Please sign in to comment.