Skip to content

Commit b4e0f07

Browse files
Apply suggestions from code review
Co-authored-by: Alex Krawiec <[email protected]>
1 parent 85a8c9e commit b4e0f07

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/platforms/android/user-feedback/configuration/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ description: "Learn about general User Feedback configuration fields."
99
The User Feedback Widget offers many customization options, and if the available options are insufficient, you can [use your own UI](#bring-your-own-widget).
1010
The widget is a custom button that opens the form, a custom AlertDialog that allows users to submit feedback.
1111

12-
### General
12+
### Hooks
1313

14-
Some hooks are available so you can react to the user opening and closing the form, when the user successfully submits the form or when there is an error:
14+
There are hooks available so you can react when the user opens or closes the form, successfully submits it, or an error is triggered:
1515

1616
| Hook | Type | Description |
1717
| ----------------- | ------------------------- | ------------------------------------------------------------------------ |
@@ -134,9 +134,9 @@ SentryAndroid.init(this) { options ->
134134
}
135135
```
136136

137-
### Form Labels Configuration
137+
### Form Label Customization
138138

139-
You can customize tha labels and placeholders used in the form.
139+
You can customize the labels and placeholders used in the form.
140140
Note: manifest options are not supported here, due to internationalization:
141141

142142
| Option | Type | Default | Description |
@@ -253,7 +253,7 @@ Here is an example of how the feedback form can be customized:
253253

254254
### Bring Your Own Widget
255255

256-
You can also use your own UI components to gather feedback and pass the feedback data object to the `Sentry.captureFeedback(Feedback)` function.
256+
You can also use your own UI components to gather feedback and pass the feedback data object to the `Sentry.captureFeedback(Feedback)` function:
257257

258258
```java
259259
import io.sentry.Sentry;

docs/platforms/android/user-feedback/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Ensure you are using the Android SDK version 8.14.0 or above of the SDK to acces
1414

1515
## Widget
1616

17-
The widget is a custom button that opens the feedback form. You can use it directly in your layout XML or instantiate it programmatically.
17+
The widget is a custom button that opens the feedback form. You can use it directly in your layout XML or instantiate it programmatically:
1818

1919
```xml {filename:myLayout.xml}
2020
<?xml version="1.0" encoding="utf-8"?>

0 commit comments

Comments
 (0)