Skip to content

Commit 86e796e

Browse files
authored
Refactor hello world class and message display
Updated class name and modified message box display text.
1 parent 1f8cdd6 commit 86e796e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/get_started/hello_world.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ outline: [2, 4]
66
### Basic Example
77
Every abap2UI5 app is an implementation of the `Z2UI5_IF_APP` interface. Create a new class with the following code:
88
```abap
9-
CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
9+
CLASS zcl_app_hello_world DEFINITION PUBLIC.
1010
1111
PUBLIC SECTION.
1212
INTERFACES z2ui5_if_app.
1313
1414
ENDCLASS.
1515
16-
CLASS z2ui5_cl_app_hello_world IMPLEMENTATION.
16+
CLASS zcl_app_hello_world IMPLEMENTATION.
1717
METHOD z2ui5_if_app~main.
1818
19-
client->message_box_display( |Hello World!| ).
19+
client->message_box_display( |Hello World| ).
2020
2121
ENDMETHOD.
2222
ENDCLASS.

0 commit comments

Comments
 (0)