Skip to content

Commit c7fb5fd

Browse files
shubh73TkDodo
andauthored
docs: fix typos (#7898)
* fix(docs): `instead` typo * fix(docs): `optimizes` typo --------- Co-authored-by: Dominik Dorfmeister <[email protected]>
1 parent eee3948 commit c7fb5fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/framework/angular/devtools.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ import { Component } from '@angular/core';
7474
- Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles.
7575
- `shadowDOMTarget?: ShadowRoot`
7676
- Default behavior will apply the devtool's styles to the head tag within the DOM.
77-
- Use this to pass a shadow DOM target to the devtools so that the styles will be applied within the shadow DOM instad of within the head tag in the light DOM.
77+
- Use this to pass a shadow DOM target to the devtools so that the styles will be applied within the shadow DOM instead of within the head tag in the light DOM.

docs/framework/solid/devtools.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ function App() {
7878
- Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles.
7979
- `shadowDOMTarget?: ShadowRoot`
8080
- Default behavior will apply the devtool's styles to the head tag within the DOM.
81-
- Use this to pass a shadow DOM target to the devtools so that the styles will be applied within the shadow DOM instad of within the head tag in the light DOM.
81+
- Use this to pass a shadow DOM target to the devtools so that the styles will be applied within the shadow DOM instead of within the head tag in the light DOM.

docs/framework/svelte/reactivity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: reactivity
33
title: Reactivity
44
---
55

6-
Svelte uses a compiler to build your code which optimises rendering. By default, components run once, unless they are referenced in your markup. To be able to react to changes in options you need to use [stores](https://svelte.dev/docs/svelte-store).
6+
Svelte uses a compiler to build your code which optimizes rendering. By default, components run once, unless they are referenced in your markup. To be able to react to changes in options you need to use [stores](https://svelte.dev/docs/svelte-store).
77

88
In the below example, the `refetchInterval` option is set from the variable `intervalMs`, which is bound to the input field. However, as the query is not able to react to changes in `intervalMs`, `refetchInterval` will not change when the input value changes.
99

0 commit comments

Comments
 (0)