Skip to content

Commit

Permalink
chore: more naming fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
bobheadxi committed Dec 13, 2024
1 parent afb9b81 commit 5c831a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/findNotebooksInstance.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import FindNotebooksCommand from "./components/FindNotebooksCommand";
import InstanceCommand from "./components/InstanceCommand";

export default async function FindNotebooksSelfHosted() {
export default async function FindNotebooksInstance() {
return <InstanceCommand Command={FindNotebooksCommand} />;
}
2 changes: 1 addition & 1 deletion src/manageBatchChangesInstance.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import InstanceCommand from "./components/InstanceCommand";
import ManageBatchChanges from "./components/ManageBatchChangesCommand";

export default function ManageBatchChangesSelfHosted() {
export default function ManageBatchChangesInstance() {
return <InstanceCommand Command={ManageBatchChanges} />;
}
2 changes: 1 addition & 1 deletion src/sourcegraph/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export async function sourcegraphDotCom(): Promise<Sourcegraph> {
}

/**
* sourcegraphSelfHosted returns the configured Sourcegraph instance.
* sourcegraphInstance returns the configured Sourcegraph instance.
*/
export function sourcegraphInstance(): Sourcegraph | null {
const prefs = getPreferenceValues<Preferences>();
Expand Down

0 comments on commit 5c831a4

Please sign in to comment.