diff --git a/advanced/content-package-template/card/README.md b/advanced/content-package-template/card/README.md index 3638eb0..d652d2d 100644 --- a/advanced/content-package-template/card/README.md +++ b/advanced/content-package-template/card/README.md @@ -108,18 +108,16 @@ The .properties files should use suffix below and be UTF-8 encoded. - Minimal manifest.json example with mandatory fields only: ```json - { - "sap.app": { - "type": "card", - "title": "Card Title"; - "applicationVersion": { - "version": "1.0.0" - } - - }, - "sap.card": {}, - "_version": "1.0", + "sap.app": { + "type": "card", + "title": "Card Title", + "applicationVersion": { + "version": "1.0.0" + } + }, + "sap.card": {}, + "_version": "1.0" } ``` diff --git a/standard/content-package-template/docs/cards/introduction.md b/standard/content-package-template/docs/cards/introduction.md index 6add1d6..232dfb5 100644 --- a/standard/content-package-template/docs/cards/introduction.md +++ b/standard/content-package-template/docs/cards/introduction.md @@ -126,18 +126,16 @@ https://sapui5.hana.ondemand.com/test-resources/sap/ui/integration/demokit/cardE - Minimal manifest.json example with mandatory fields only: ```json - { - "sap.app": { - "type": "card", - "title": "Card Title"; - "applicationVersion": { - "version": "1.0.0" - } - - }, - "sap.card": {}, - "_version": "1.0", + "sap.app": { + "type": "card", + "title": "Card Title", + "applicationVersion": { + "version": "1.0.0" + } + }, + "sap.card": {}, + "_version": "1.0" } ```