Skip to content

Commit 09f1340

Browse files
Merge pull request #1153 from MrChocolatine/patch-1
Fix typos for RFC #1099
2 parents 68be10a + 5c0c90d commit 09f1340

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

text/1099-renderComponent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ export function renderComponent(
103103
}
104104
```
105105

106-
`RenderResult` is a subset of the currently a pre-existing `interface` from `@glimmer/interfaces`, but would be exposed as public API via the only the return type of `renderComponent`.
106+
`RenderResult` is a subset of the currently pre-existing `interface` from `@glimmer/interfaces`, but would be exposed as public API via the only return type of `renderComponent`.
107107

108-
It's shape is:
108+
Its shape is:
109109
```ts
110110
export interface RenderResult {
111111
/**
@@ -218,7 +218,7 @@ const render = modifier((element) => {
218218

219219
## How we teach this
220220

221-
`renderComponent` _is_ a low-level API, but it's use cases are powerful:
221+
`renderComponent` _is_ a low-level API, but its use cases are powerful:
222222

223223
### Micro Applications
224224

@@ -281,7 +281,7 @@ Combined with [RFC #931](https://github.com/emberjs/rfcs/pull/931), we can dynam
281281
```
282282

283283
> [!NOTE]
284-
> Depending on your application, you may want to consider sanitizing user input, so users don't inject their own script / sytle tags into your app.
284+
> Depending on your application, you may want to consider sanitizing user input, so users don't inject their own script / style tags into your app.
285285
> See: [DOMPurify](https://github.com/cure53/DOMPurify) and [Web Sanitizer API](https://developer.mozilla.org/en-US/docs/Web/API/Sanitizer) and [TrustedHTML](https://developer.mozilla.org/en-US/docs/Web/API/TrustedHTML)
286286
287287
### Integration with "islands"-based documentation tools

0 commit comments

Comments
 (0)