Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BeckerWdf committed Jan 24, 2022
1 parent ac69408 commit ff63a14
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions file-formats/ddlx/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DDLX File Format


File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.ddlx.json` | 1 | [`zif_aff_ddlx_v1.intf.abap`](./type/zif_aff_ddlx_v1.intf.abap) | [`ddlx-v1.json`](./ddlx-v1.json) | [`z_aff_example_ddlx.ddlx.json`](./examples/z_aff_example_ddlx.ddlx.json)
# DDLX File Format


File | Cardinality | Definition | Schema | Example
:--- | :--- | :--- | :--- | :---
`<name>.ddlx.json` | 1 | [`zif_aff_ddlx_v1.intf.abap`](./type/zif_aff_ddlx_v1.intf.abap) | [`ddlx-v1.json`](./ddlx-v1.json) | [`z_aff_example_ddlx.ddlx.json`](./examples/z_aff_example_ddlx.ddlx.json)
`<name>.ddlx.cds` | 1 | [CDS](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abencds.htm) | | [`z_aff_example_ddlx.ddlx.cds`](./examples/z_aff_example_ddlx.ddlx.cds)
16 changes: 8 additions & 8 deletions file-formats/ddlx/type/zif_aff_ddlx_v1.intf.abap
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
interface zif_aff_ddlx_v1
public.
INTERFACE zif_aff_ddlx_v1
PUBLIC.

types:
TYPES:
"! <p class="shorttext">Object Type DDLX</p>
"! DDLX object type
begin of ty_main,
BEGIN OF ty_main,
"! $required
format_version type zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,
"! <p class="shorttext">Header</p>
"! Header
"! $required
header type zif_aff_types_v1=>ty_header_60,
end of ty_main.
header TYPE zif_aff_types_v1=>ty_header_60,
END OF ty_main.

endinterface.
ENDINTERFACE.

0 comments on commit ff63a14

Please sign in to comment.