diff --git a/README.md b/README.md
index 55bc487..c4348e4 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ It is an adaptation of an earlier version created by **@shikleev** and now maint
| Dark Theme | Light Theme |
| :---------------: | :---------------: |
-|
|
|
+|
|
|
---
@@ -97,8 +97,8 @@ The `fragula-core` module **does not** provide support for jetpack compose, you
```
-**Finally**, you need to set opaque background and layout direction flag to your fragment’s root
-layout to avoid any issues with swipe animation.
+**Finally**, you need to set opaque background to your fragment’s root layout
+to avoid any issues with swipe animation.
```xml
@@ -114,8 +114,8 @@ layout to avoid any issues with swipe animation.
```
-Now if you open the app you'll see that you can swipe fragments like in Telegram, Slack and many
-other messaging apps.
+That's it! No need to worry about gestures, animations and switching the navigation framework
+you already use in your project.
---
@@ -355,9 +355,6 @@ fun DetailsScreen(navController: NavController) {
}
```
-Now if you open the app you'll see that you can swipe composables like in Telegram, Slack and many
-other messaging apps.
-
---
## More Options
@@ -386,8 +383,8 @@ on official android developers website.
### Multiple BackStacks
-As already have been mentioned, Fragula doesn't support multiple backstacks both in XML and Compose.
-If you really need to support this, consider creating a nested `NavHost` for bottom tabs only.
+As already have been mentioned, Fragula **doesn't support** multiple backstacks both in XML and Compose.
+If you really need this feature in your app, consider creating a nested `NavHost` for bottom tabs only.
---