From 1e0019c96b75f375e9359afb94b4a15e19df560f Mon Sep 17 00:00:00 2001 From: Nir Lahad Date: Sun, 7 Apr 2024 08:37:06 +0300 Subject: [PATCH] JSON AST docs missing commas --- docs/source-2.0/spec/json-ast.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source-2.0/spec/json-ast.rst b/docs/source-2.0/spec/json-ast.rst index 47fdb223ca3..0f975d0e71f 100644 --- a/docs/source-2.0/spec/json-ast.rst +++ b/docs/source-2.0/spec/json-ast.rst @@ -361,7 +361,7 @@ The following example defines an :ref:`enum`: "type": "enum", "members": { "FOO": { - "target": "smithy.api#Unit" + "target": "smithy.api#Unit", "traits": { "smithy.api#enumValue": "foo" } @@ -382,7 +382,7 @@ The following example defines an :ref:`intEnum`: "type": "intEnum", "members": { "FOO": { - "target": "smithy.api#Unit" + "target": "smithy.api#Unit", "traits": { "smithy.api#enumValue": 1 }