Skip to content

Commit d778161

Browse files
committed
Merge branch '@mbert/docs-cpk' of github.com:software-mansion/react-native-gesture-handler into @mbert/docs-cpk
2 parents a0fd979 + 69c9b4f commit d778161

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/docs-gesture-handler/docs/composition/use-competing-gestures.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 1
77

88
import Competing from '!!raw-loader!.//\_examples/hooks/Competing';
99

10-
Only one of the provided gestures can become active at the same time. The first gesture to become active will cancel the rest of the gestures. It accepts variable number of arguments.
10+
Only one of the provided gestures can become active at the same time. The first gesture to become active will cancel the rest of the gestures. It accepts a variable number of arguments.
1111

1212
For example, let's say that you have a component that you want to make draggable but you also want to show additional options on long press. Presumably you would not want the component to move after the long press activates. You can accomplish this using `useCompetingGestures`:
1313

packages/docs-gesture-handler/docs/gestures/use-pinch-gesture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { webContainer } from '@site/src/utils/getGestureStyles';
1010
import PinchGestureBasic from '@site/static/examples/PinchGestureBasic';
1111
import PinchGestureBasicSrc from '!!raw-loader!@site/static/examples/PinchGestureBasicSrc';
1212

13-
Gesture that recognizes pinching. It allows for tracking the distance between two fingers and use that information to scale or zoom your content.
13+
Gesture that recognizes pinching. It allows for tracking the distance between two fingers and uses that information to scale or zoom your content.
1414

1515
<div className={webContainer}>
1616
<InteractiveExample

packages/docs-gesture-handler/docs/guides/upgrading-to-3.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Upgrading to the new API introduced in Gesture Handler 3
44
---
55

66
:::tip
7-
To make migration process easier, we have prepared a [SKILL](https://github.com/software-mansion/react-native-gesture-handler/blob/main/skills/gesture-handler-3-migration/SKILL.md) that will help your AI assistant to automatically migrate your codebase to the new API.
7+
To make the migration process easier, we have prepared a [SKILL](https://github.com/software-mansion/react-native-gesture-handler/blob/main/skills/gesture-handler-3-migration/SKILL.md) that will help your AI assistant to automatically migrate your codebase to the new API.
88
:::
99

1010
## Migrating gestures

0 commit comments

Comments
 (0)