summaryrefslogtreecommitdiff
path: root/extension/src/activation
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-09-15 10:46:30 -0700
committerNate Sesti <sestinj@gmail.com>2023-09-15 10:46:30 -0700
commita715cb1ebd507c305d12d83a3227e748a2daae03 (patch)
treee0c4cea45406496fc40570c7c7bb6dec00eef78e /extension/src/activation
parentc56e24d2a5f2b40702e4b495fa3f28d554eaa3ab (diff)
parent775d051b4bcdbe07fbd38fae4d3e36e79234eb56 (diff)
downloadsncontinue-a715cb1ebd507c305d12d83a3227e748a2daae03.tar.gz
sncontinue-a715cb1ebd507c305d12d83a3227e748a2daae03.tar.bz2
sncontinue-a715cb1ebd507c305d12d83a3227e748a2daae03.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension/src/activation')
-rw-r--r--extension/src/activation/activate.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/activation/activate.ts b/extension/src/activation/activate.ts
index de7464bf..7481c211 100644
--- a/extension/src/activation/activate.ts
+++ b/extension/src/activation/activate.ts
@@ -34,7 +34,7 @@ export async function activateExtension(context: vscode.ExtensionContext) {
console.log("Error getting workspace folder: ", e);
}
// Before anything else, check whether this is an out-of-date version of the extension
- // Do so by grabbing the package.json off of the GitHub respository for now.
+ // Do so by grabbing the package.json off of the GitHub repository for now.
fetch(PACKAGE_JSON_RAW_GITHUB_URL)
.then(async (res) => res.json())
.then((packageJson) => {
@@ -81,7 +81,7 @@ export async function activateExtension(context: vscode.ExtensionContext) {
return await ideProtocolClient.getSessionId();
})();
- // Register Continue GUI as sidebar webview, and beging a new session
+ // Register Continue GUI as sidebar webview, and beginning a new session
const provider = new ContinueGUIWebviewViewProvider(sessionIdPromise);
context.subscriptions.push(