Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #9451

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tabby-core/src/components/baseTab.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export abstract class BaseTabComponent extends BaseComponent {
}

/**
* Shows the acticity marker on the tab header
* Shows the activity marker on the tab header
*/
displayActivity (): void {
if (!this.hasActivity) {
Expand All @@ -138,7 +138,7 @@ export abstract class BaseTabComponent extends BaseComponent {
}

/**
* Removes the acticity marker from the tab header
* Removes the activity marker from the tab header
*/
clearActivity (): void {
if (this.hasActivity) {
Expand Down
2 changes: 1 addition & 1 deletion tabby-core/src/components/splitTab.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit

let target = relative ? this.getParentOf(relative) : null
if (!target) {
// Rewrap the root container just in case the orientation isn't compatibile
// Rewrap the root container just in case the orientation isn't compatible
target = new SplitContainer()
target.orientation = ['l', 'r'].includes(side) ? 'h' : 'v'
target.children = [this.root]
Expand Down
10 changes: 5 additions & 5 deletions tabby-core/src/services/profiles.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ProfilesService {
) { }

/*
* Methods used to interract with ProfileProvider
* Methods used to interact with ProfileProvider
*/

getProviders (): ProfileProvider<Profile>[] {
Expand All @@ -58,7 +58,7 @@ export class ProfilesService {
}

/*
* Methods used to interract with Profile
* Methods used to interact with Profile
*/

/*
Expand Down Expand Up @@ -206,7 +206,7 @@ export class ProfilesService {
}

/*
* Methods used to interract with Profile Selector
* Methods used to interact with Profile Selector
*/

selectorOptionForProfile <P extends Profile, T> (profile: PartialProfile<P>): SelectorOption<T> {
Expand Down Expand Up @@ -332,7 +332,7 @@ export class ProfilesService {
}

/*
* Methods used to interract with Profile/ProfileGroup/Global defaults
* Methods used to interact with Profile/ProfileGroup/Global defaults
*/

/**
Expand Down Expand Up @@ -370,7 +370,7 @@ export class ProfilesService {
}

/*
* Methods used to interract with ProfileGroup
* Methods used to interact with ProfileGroup
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion tabby-terminal/src/api/baseTerminalTab.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
profile: P

/**
* Enables normall passthrough from session output to terminal input
* Enables normal passthrough from session output to terminal input
*/
enablePassthrough = true

Expand Down
Loading