Skip to content

Commit 0ff4a19

Browse files
authored
Update tables.md
1 parent 07454b6 commit 0ff4a19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/development/model/tables.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ CLASS z2ui5_cl_sample_tab IMPLEMENTATION.
2323
2424
DO 100 TIMES.
2525
INSERT value #(
26-
count = sy-index.
27-
value = 'red'.
26+
count = sy-index
27+
value = 'red'
2828
descr = 'this is a description' ) INTO TABLE mt_itab.
2929
ENDDO.
3030
@@ -51,8 +51,8 @@ Making a table editable is a simple change. You just need to switch the binding
5151
5252
DO 100 TIMES.
5353
INSERT value #(
54-
count = sy-index.
55-
value = 'red'.
54+
count = sy-index
55+
value = 'red'
5656
descr = 'this is a description' ) INTO TABLE mt_itab.
5757
ENDDO.
5858

0 commit comments

Comments
 (0)