Skip to content

Commit 30a8f06

Browse files
committed
docs: fix broken marketplace link and markup errors
Fix the double-encoded VS Marketplace URL in Nightly Builds, remove the stray handbook preamble closing tag, and close the inline code quote in the declaration publishing docs.
1 parent 89b479f commit 30a8f06

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

packages/documentation/copy/en/Nightly Builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ A direct way to do this is to open or create your workspace's `.vscode/settings.
3131
"typescript.tsdk": "<path to your folder>/node_modules/typescript/lib"
3232
```
3333

34-
Alternatively, if you simply want to run the nightly editing experience for JavaScript and TypeScript in Visual Studio Code without changing your workspace version, you can run the [JavaScript and TypeScript Nightly Extension](https://marketplace.visualstudio.com/items?itemName%253Dms-vscode.vscode-typescript-next)
34+
Alternatively, if you simply want to run the nightly editing experience for JavaScript and TypeScript in Visual Studio Code without changing your workspace version, you can run the [JavaScript and TypeScript Nightly Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-next)
3535

3636
### Sublime Text
3737

packages/documentation/copy/en/declaration-files/Publishing.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ For example:
3333

3434
Note that the `"typings"` field is synonymous with `types`, and could be used as well.
3535

36-
3736
## Dependencies
3837

3938
All dependencies are managed by npm.
@@ -136,7 +135,7 @@ When you want to only change the resolution for a single file at a time, you can
136135
}
137136
```
138137

139-
On TypeScript 4.0 and above, an import for `"package-name"` would resolve to `./index.d.ts` and for 3.9 and below `"./index.v3.d.ts`.
138+
On TypeScript 4.0 and above, an import for `"package-name"` would resolve to `./index.d.ts` and for 3.9 and below `"./index.v3.d.ts"`.
140139

141140
Note that redirections only affect the _external_ API of a package; import resolution within a project is not affected by `typesVersions`. For example, a `d.ts` file in the previous example containing `import * as foo from "./index"` will still map to `index.d.ts`, not `index.v3.d.ts`, whereas another package importing `import * as foo from "package-name"` _will_ get `index.v3.d.ts`.
142141

packages/documentation/copy/en/handbook-v2/Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: docs
44
permalink: /docs/handbook/2/basic-types.html
55
oneline: "Step one in learning TypeScript: The basic types."
66
preamble: >
7-
<p>Welcome to the first page of the handbook. If this is your first experience with TypeScript - you may want to start at one of the '<a href='https://www.typescriptlang.org/docs/handbook/intro.html#get-started'>Getting Started</a>' guides</a>
7+
<p>Welcome to the first page of the handbook. If this is your first experience with TypeScript - you may want to start at one of the '<a href='https://www.typescriptlang.org/docs/handbook/intro.html#get-started'>Getting Started</a>' guides
88
---
99

1010
Each and every value in JavaScript has a set of behaviors you can observe from running different operations.

0 commit comments

Comments
 (0)