Skip to content

Commit 3f206ee

Browse files
authored
Clean up message display examples in documentation
Removed unnecessary blank lines in message display examples.
1 parent 3f94ef0 commit 3f206ee

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

docs/development/messages.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ For short-duration messages, such as success notifications, you can use the mess
1212

1313
```abap
1414
METHOD z2ui5_if_app~main.
15-
1615
client->message_toast_display( `this is a message` ).
17-
1816
ENDMETHOD.
1917
```
2018

@@ -24,21 +22,17 @@ If you need the user to acknowledge the message, display a message box that requ
2422

2523
```abap
2624
METHOD z2ui5_if_app~main.
27-
2825
client->message_box_display( `this is a message` ).
29-
3026
ENDMETHOD.
3127
```
3228

3329
For error messages, simply change the type:
3430

3531
```abap
3632
METHOD z2ui5_if_app~main.
37-
3833
client->message_box_display(
3934
text = `This is an error message`
4035
type = `error` ).
41-
4236
ENDMETHOD.
4337
```
4438

0 commit comments

Comments
 (0)