Skip to content

Commit d165d74

Browse files
committed
Standardize ABAP string delimiters to backticks
Replace single quotes with backtick literals in ABAP code examples for consistency across the documentation. AUTHORITY-CHECK literals in authorization.md are kept as single quotes (ABAP convention for character literals). https://claude.ai/code/session_0165sq6V21ktTSAhKUW4r74K
1 parent 92ef62d commit d165d74

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/development/trouble.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ METHOD z2ui5_if_app~main.
2020
` alert("inputmode changed to" + mode); }` ).
2121
2222
DATA(page) = view->shell(
23-
)->page( title = 'abap2UI5 - Softkeyboard on/off'
24-
navbuttonpress = client->_event( 'BACK' )
23+
)->page( title = `abap2UI5 - Softkeyboard on/off`
24+
navbuttonpress = client->_event( `BACK` )
2525
shownavbutton = client->check_app_prev_stack( )
2626
)->_z2ui5( )->focus( focusid = `ZINPUT`
2727
)->simple_form( editable = abap_true
28-
)->content( 'form'
29-
)->title( 'Keyboard on/off'
30-
)->label( 'Input'
28+
)->content( `form`
29+
)->title( `Keyboard on/off`
30+
)->label( `Input`
3131
)->input( id = `ZINPUT`
3232
value = client->_bind_edit( input )
3333
showvaluehelp = abap_true
34-
valuehelprequest = client->_event( 'CALL_KEYBOARD' )
35-
valuehelpiconsrc = 'sap-icon://keyboard-and-mouse' ).
34+
valuehelprequest = client->_event( `CALL_KEYBOARD` )
35+
valuehelpiconsrc = `sap-icon://keyboard-and-mouse` ).
3636
3737
client->view_display( page->stringify( ) ).
3838
3939
ENDIF.
4040
4141
4242
CASE client->get( )-event.
43-
WHEN 'CALL_KEYBOARD'.
43+
WHEN `CALL_KEYBOARD`.
4444
client->follow_up_action( `z2ui5.afterBE("ZINPUT", "none");` ).
45-
WHEN 'BACK'.
45+
WHEN `BACK`.
4646
client->nav_app_leave( ).
4747
ENDCASE.
4848

docs/technical/dx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abap2UI5 mirrors this classic selection screen behavior in the browser. Use `Z2U
6161
CLASS zcl_app_input DEFINITION PUBLIC CREATE PUBLIC.
6262
PUBLIC SECTION.
6363
INTERFACES z2ui5_if_app.
64-
DATA pa_arbgb TYPE string VALUE 'MDG_TR'.
64+
DATA pa_arbgb TYPE string VALUE `MDG_TR`.
6565
ENDCLASS.
6666
6767
CLASS zcl_app_input IMPLEMENTATION.

0 commit comments

Comments
 (0)