diff --git a/README.md b/README.md
index ab1de80b3347..d7d5b17a3120 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,9 @@
> Reanimated 3 is here! Check out our [documentation page](https://docs.swmansion.com/react-native-reanimated/) for more information
React Native Reanimated provides a more comprehensive,
-low level abstraction for the Animated library API to be built
-on top of and hence allow for much greater flexibility especially when it
-comes to gesture based interactions.
+low-level abstraction for the Animated library API on which to build,
+allowing for much greater flexibility, especially when it comes to
+gesture-based interactions.
### Nightly CI state
diff --git a/packages/docs-reanimated/docs/advanced/useEvent.mdx b/packages/docs-reanimated/docs/advanced/useEvent.mdx
index 83ffc0d98b8e..2525a6d5b8bb 100644
--- a/packages/docs-reanimated/docs/advanced/useEvent.mdx
+++ b/packages/docs-reanimated/docs/advanced/useEvent.mdx
@@ -4,7 +4,7 @@ sidebar_position: 4
# useEvent
-`useEvent` is a low-level hook. It returns event handler that will be called when native event occurs. You can use it to create custom event handler hooks, like [`useScrollViewOffset`](/docs/scroll/useScrollViewOffset/) or [`useAnimatedScrollHandler`](/docs/scroll/useAnimatedScrollHandler/).
+`useEvent` is a low-level hook. It returns an event handler that will be called when a native event occurs. You can use it to create custom event handler hooks, like [`useScrollViewOffset`](/docs/scroll/useScrollViewOffset/) or [`useAnimatedScrollHandler`](/docs/scroll/useAnimatedScrollHandler/).
## Reference
@@ -63,22 +63,22 @@ type EventHandlerProcessed<
#### `handler`
-Function that receives event object with native payload, that can be passed to custom handler hook's worklets.
+Function that receives an event object with a native payload, which can be passed to the custom handler hook's worklets.
- `event` - event object.
The payload can differ depending on the type of the event.
#### `eventNames`
-Array of event names that will be handled by handler.
+Array of event names that will be handled by the handler.
#### `rebuild`
-Value indicating whether handler should be rebuilt.
+Value indicating whether the handler should be rebuilt.
### Returns
-The hook returns event handler that will be invoked when native event is dispatched. That handler may be connected to multiple components and will be invoked for each one's specific events.
+The hook returns an event handler that will be invoked when a native event is dispatched. That handler may be connected to multiple components and will be invoked for each one's specific events.
## Example
diff --git a/packages/docs-reanimated/versioned_docs/version-2.x/api/hooks/useEvent.md b/packages/docs-reanimated/versioned_docs/version-2.x/api/hooks/useEvent.md
index 15325f7fd43a..8abbbd924ac4 100644
--- a/packages/docs-reanimated/versioned_docs/version-2.x/api/hooks/useEvent.md
+++ b/packages/docs-reanimated/versioned_docs/version-2.x/api/hooks/useEvent.md
@@ -4,13 +4,13 @@ title: useEvent
sidebar_label: useEvent
---
-This is low-level hook returning event handler that will be invoked with native events, which should be used in order to create custom event handler hook like `useAnimatedGestureHandler` or `useAnimatedScrollHandler`.
+This is a low-level hook returning an event handler that will be invoked with native events, which should be used in order to create custom event handler hooks, like `useAnimatedGestureHandler` or `useAnimatedScrollHandler`.
### Arguments
#### `handler` [function]
-Handler will receive event object with native payload, that can be passed to custom handler hook's worklets.
+Handler that will receive an event object with a native payload, which can be passed to the custom handler hook's worklets.
- `event` [object] - event object.
The payload can differ depending on the type of the event.
@@ -21,11 +21,11 @@ Array of event names that will be handled by handler.
#### `rebuilt` [boolean]
-Value indicating whether handler should be rebuilt.
+Value indicating whether the handler should be rebuilt.
### Returns
-The hook returns event handler that will be invoked when native event is dispatched.
+The hook returns an event handler that will be invoked when a native event is dispatched.
## Example