Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zoontek committed Dec 25, 2023
1 parent 614905b commit a3de004
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 12 deletions.
5 changes: 3 additions & 2 deletions docs/docs/api/hooks/input/use-reanimated-focused-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ The `input` property from this hook is returned as `SharedValue`. The returned d

```ts
type FocusedInputLayoutChangedEvent = {
target: number; // tag of the focused TextInput
// tag of the focused TextInput
target: number;
// layout of the focused TextInput
layout: {
// layout of the focused TextInput
x: number; // `x` coordinate inside the parent component
y: number; // `y` coordinate inside the parent component
width: number; // `width` of the TextInput
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.0.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.4.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.5.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.6.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.7.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.8.0/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ The `input` property from this hook is returned as `SharedValue`. The returned d

```ts
type FocusedInputLayoutChangedEvent = {
target: number; // tag of the focused TextInput
// tag of the focused TextInput
target: number;
// layout of the focused TextInput
layout: {
// layout of the focused TextInput
x: number; // `x` coordinate inside the parent component
y: number; // `y` coordinate inside the parent component
width: number; // `width` of the TextInput
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-1.9.0/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you are bothered why it's needed, you can read more about it in [architecture
import { KeyboardProvider } from 'react-native-keyboard-controller';

export default function App() {
return <KeyboardProvider>// your code here</KeyboardProvider>;
return <KeyboardProvider>{/* your code here */}</KeyboardProvider>;
}
```

Expand Down

0 comments on commit a3de004

Please sign in to comment.