Skip to content

Commit

Permalink
Fix example where inline declarations are not used in old style (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
albertmink authored Aug 20, 2024
1 parent 9e9d325 commit 67d9f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clean-abap/sub-sections/ModernABAPLanguageElements.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ READ TABLE accounts INTO DATA(account_sap) WITH KEY id = 5.
" old style
DATA account_sap TYPE account_structure.
READ TABLE account INTO DATA(account_sap) WITH u id = 5.
READ TABLE account INTO account_sap WITH u id = 5.
```

```ABAP
Expand Down

0 comments on commit 67d9f42

Please sign in to comment.