Skip to content

Commit e2606a9

Browse files
committed
Fix remaining string literals in additional files
- fiori.md: Replace 'List' and 'TEXT' with backticks - srtti.md: Replace 'entry 01', 'red', 'blue', 'USR01' with backticks - device.md: Replace 'POST' with backticks
1 parent ac25647 commit e2606a9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/advanced/fiori.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ METHOD z2ui5_if_app~main.
7878
7979
DATA(lr_view) = z2ui5_cl_xml_view=>factory( ).
8080
DATA(lr_page) = lr_view->page( showheader = abap_false
81-
backgrounddesign = 'List' )->content( ). "Backgrounddesign "List" sets a white background color
81+
backgrounddesign = `List` )->content( ). "Backgrounddesign "List" sets a white background color
8282
83-
lr_page->text( 'TEXT' ).
83+
lr_page->text( `TEXT` ).
8484
8585
client->view_display( lr_view->stringify( ) ).
8686

docs/advanced/tools/srtti.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ CLASS z2ui5_cl_app IMPLEMENTATION.
3939
FIELD-SYMBOLS <tab> TYPE ty_t_tab.
4040
ASSIGN mr_tab->* TO <tab>.
4141
<tab> = VALUE #(
42-
( title = 'entry 01' value = 'red' descr = 'this is a description' )
43-
( title = 'entry 02' value = 'blue' descr = 'this is a description' ) ).
42+
( title = `entry 01` value = `red` descr = `this is a description` )
43+
( title = `entry 02` value = `blue` descr = `this is a description` ) ).
4444
4545
client->message_box_display( `this works out of the box` ).
4646
@@ -63,7 +63,7 @@ CLASS z2ui5_cl_app IMPLEMENTATION.
6363
6464
METHOD z2ui5_if_app~main.
6565
66-
DATA(o_struct_desc) = cl_abap_structdescr=>describe_by_name( 'USR01' ).
66+
DATA(o_struct_desc) = cl_abap_structdescr=>describe_by_name( `USR01` ).
6767
DATA(o_table_desc) = cl_abap_tabledescr=>create(
6868
p_line_type = CAST #( o_struct_desc )
6969
p_table_kind = cl_abap_tabledescr=>tablekind_std

docs/development/model/device.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ CLASS z2ui5_cl_sample_device IMPLEMENTATION.
6060
6161
client->view_display( lo_view->stringify( ) ).
6262
63-
IF client->get( )-event = 'POST'.
63+
IF client->get( )-event = `POST`.
6464
"process device info here...
6565
ENDIF.
6666

0 commit comments

Comments
 (0)