Skip to content

Commit 0094f5e

Browse files
NicolappsConvex, Inc.
authored and
Convex, Inc.
committed
Fix typo: “VSCode” → “VS Code” (#37389)
See https://code.visualstudio.com/brand GitOrigin-RevId: 39859ae0c7675562fadda4947043ae4275172c82
1 parent 9ca0771 commit 0094f5e

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

npm-packages/convex/api-extractor-configs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ committed to reports/ directory, making it possible to track evolution of the
33
public API.
44

55
Since api-extractor .d.ts rollups don't support declaration map, using these as
6-
published types break jump-to-definition in VSCode. Until
6+
published types break jump-to-definition in VS Code. Until
77
[declaration map rollups](https://github.com/microsoft/rushstack/issues/1886)
88
are implemented we compile public types with `tsc --stripInternal`, which
99
requires marking exports as internal at the index.ts barrel file level if they

npm-packages/demos/html/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const CONVEX_URL = "http://localhost:8000";
22

3-
// These JSDoc type annotations help VSCode find types.
3+
// These JSDoc type annotations help VS Code find types.
44
/** @type {import("convex/browser")["ConvexClient"]} */
55
const ConvexClient = convex.ConvexClient;
66
const client = new ConvexClient(CONVEX_URL);

npm-packages/demos/html/typed-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<div class="messages"></div>
66

77
<script src="https://unpkg.com/[email protected]/dist/browser.bundle.js"></script>
8-
<!--VSCode TypeScript autocompletion doesn't work in HTML files so use a file-->
8+
<!--VS Code TypeScript autocompletion doesn't work in HTML files so use a file-->
99
<script src="./script.js"></script>

npm-packages/docs/docs/ai/convex-mcp-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See editor specific instructions:
1919

2020
- [Cursor](/ai/using-cursor.mdx#setup-the-convex-mcp-server)
2121
- [Windsurf](/ai/using-windsurf.mdx#setup-the-convex-mcp-server)
22-
- [VSCode](/ai/using-github-copilot.mdx#setup-the-convex-mcp-server)
22+
- [VS Code](/ai/using-github-copilot.mdx#setup-the-convex-mcp-server)
2323

2424
## Available Tools
2525

npm-packages/docs/docs/ai/using-github-copilot.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: "Tips and best practices for using Github Copilot with Convex"
55
slug: "using-github-copilot"
66
---
77

8-
[Github Copilot](https://github.com/features/copilot), the AI built into VSCode,
9-
makes it easy to write and maintain apps built with Convex. Let's walk through
10-
how to setup Github Copilot for the best possible results with Convex.
8+
[Github Copilot](https://github.com/features/copilot), the AI built into VS
9+
Code, makes it easy to write and maintain apps built with Convex. Let's walk
10+
through how to setup Github Copilot for the best possible results with Convex.
1111

1212
## Add Convex Instructions
1313

@@ -37,7 +37,7 @@ in. The Convex MCP server gives your AI coding agent access to the your Convex
3737
deployment to query and optimize your project.
3838

3939
To get started with
40-
[MCP in VSCode](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
40+
[MCP in VS Code](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
4141
then create a file in `.vscode/mcp.json` and add the following:
4242

4343
```json

npm-packages/docs/docs/client/javascript/script-tag.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import script from "!!raw-loader!@site/../demos/html/script.js";
1717
replacements={[[/https?:\/\/localhost:8000/g, "CONVEX_URL_GOES_HERE"]]}
1818
/>
1919

20-
VSCode doesn't support TypeScript autocompletion in HTML files so for types and
20+
VS Code doesn't support TypeScript autocompletion in HTML files so for types and
2121
better autocompletion you can split your code out into a script file:
2222

2323
<Snippet

npm-packages/private-demos/quickstarts/vue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite.
44

55
## Recommended IDE Setup
66

7-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
7+
[VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
88

99
## Type Support for `.vue` Imports in TS
1010

npm-packages/private-demos/quickstarts/vue/src/components/TheWelcome.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import SupportIcon from './icons/IconSupport.vue'
2828
This project is served and bundled with
2929
<a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030
recommended IDE setup is
31-
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
31+
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VS Code</a> +
3232
<a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
3333
you need to test your components and web pages, check out
3434
<a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a> and

0 commit comments

Comments
 (0)