Skip to content

Commit 22d2455

Browse files
FernandoFernando
authored andcommitted
Fixed :: Typos & IDE Grammar
1 parent ea6e95b commit 22d2455

5 files changed

Lines changed: 82 additions & 6 deletions

File tree

.idea/deviceManager.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/project.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inspect DataStore preferences, monitor logs, and create custom debugging modules
1010
Currently, there are a couple of other debug menu libraries,
1111
like [Lens-Logger](https://github.com/farhazulMullick/Lens-Logger/tree/feat/log-datastore)
1212
and [Beagle](https://github.com/pandulapeter/beagle), however, they were either focused on a limited set of features or
13-
interfered with the LayoutInpector in Android Studio.
13+
interfered with the LayoutInspector in Android Studio.
1414

1515
This library offers a lightweight, easy-to-use, and modular debug menu that you can easily integrate into your app and
1616
customise to your needs.
@@ -33,7 +33,7 @@ customise to your needs.
3333

3434
### Basic Usage
3535

36-
In order to use the library, you first need to add the FAB to your Activity/Composable; this changes depending on the
36+
To use the library, you first need to add the FAB to your Activity/Composable; this changes depending on the
3737
project.
3838

3939
<details>
@@ -134,8 +134,8 @@ If you only want the menu to be opened through shake, you can pass `enableShake`
134134

135135
```kotlin
136136
DebugMenuOverlay(
137-
showFab = false, // <-- Disable FAB buttoj
138-
enableShake = true, // <-- Enalbe shake to open
137+
showFab = false, // <-- Disable FAB button
138+
enableShake = true, // <-- Enable shake to open
139139
modules = listOf(
140140
// your modules...
141141
)
@@ -194,7 +194,7 @@ class AnalyticsManager {
194194

195195
**Adding DataStore Module**
196196

197-
Just add the `DataStoreModule` class to your list of Modules, and pass the list of DataStores and you're good to go. The
197+
Just add the `DataStoreModule` class to your list of Modules, and pass the list of DataStores and, you're good to go. The
198198
UI Will automatically generate the UI for every entry.
199199

200200
```kotlin
@@ -294,7 +294,7 @@ class DemoApp : Application() {
294294
<br/>
295295
The dynamic module allows you to add custom actions to the debug menu. They can either be:
296296

297-
- Global actions: These actions are displayed in the debug menu, and can be triggered from anywhere in the app.
297+
- Global actions: These actions are displayed in the debug menu and can be triggered from anywhere in the app.
298298
- Dynamic Actions: These actions are only displayed when the user is in a specific screen and get automatically removed
299299
when the user navigates away from that screen.
300300

0 commit comments

Comments
 (0)