Skip to content

Commit 5c7b8da

Browse files
Merge branch 'main' into fix-use-submission-situation
2 parents 61acf4e + 28cab9d commit 5c7b8da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/concepts/context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This function has a `Provider` property that wraps the component tree you want t
2424
```jsx tab title="/context/create.js"
2525
import { createContext } from "solid-js";
2626

27-
const MyContext = createContext();
27+
export const MyContext = createContext();
2828
```
2929

3030
```jsx tab title="/context/component.jsx"

src/routes/solid-router/reference/response-helpers/reload.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ interface ResponseOptions & Omit<ResponseInit, "body"> {
2929
reload(opt?: ResponseOptions): CustomResponse<never>;
3030
```
3131

32-
The `ResponseOptions` extens the types from the native [`ResponseInit`](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#options) interface.
32+
The `ResponseOptions` extends the types from the native [`ResponseInit`](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#options) interface.

0 commit comments

Comments
 (0)