Skip to content

Commit e4d0b5b

Browse files
Fix TypeScript casing (#1195)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent a15aad9 commit e4d0b5b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/routes/configuration/typescript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Additionally, it makes sure the project's architecture is primed for React JSX f
4848

4949
## Migrating from JavaScript to TypeScript
5050

51-
Transitioning from JavaScript to TypeScript in a Solid project offers the benefits of static typing. To migrate to Typescript:
51+
Transitioning from JavaScript to TypeScript in a Solid project offers the benefits of static typing. To migrate to TypeScript:
5252

5353
1. Install TypeScript into your project.
5454

src/routes/pt-br/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Começo rápido
66

77
Experimente Solid in your browser by visiting our [interactive playground](https://playground.solidjs.com/).
88

9-
Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [Typescript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
9+
Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [TypeScript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
1010

1111
## Creating a Solid application
1212

src/routes/pt-br/solid-router/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Começo rápido
66

77
Experimente Solid in your browser by visiting our [interactive playground](https://playground.solidjs.com/).
88

9-
Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [Typescript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
9+
Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [TypeScript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
1010

1111
## Creating a Solid application
1212

src/routes/solid-start/advanced/return-responses.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Returning responses
44

55
In SolidStart, it is possible to return a Response object from a server function.
66
[`solid-router`](/solid-router) knows how to handle certain responses with its [`query`](/solid-router/reference/data-apis/query) and [`action`](/solid-router/reference/data-apis/action) APIs.
7-
For Typescript, when returning a response using `solid-router`'s `redirect`, `reload`, or `json` helpers, they will not impact the return value of the server function.
7+
For TypeScript, when returning a response using `solid-router`'s `redirect`, `reload`, or `json` helpers, they will not impact the return value of the server function.
88

99
While we suggest depending on the type of the function to handle errors differently, you can always return or throw a response.
1010

0 commit comments

Comments
 (0)