Skip to content

Commit 30cb533

Browse files
authored
Add Comma in Component Reference Example (#7562)
* Add missing comma in component reference example * Remove more commas
1 parent e94208c commit 30cb533

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/components/reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Action Rows can contain:
9898

9999
```json
100100
{
101-
"flags": 32768
101+
"flags": 32768,
102102
"components": [
103103
{
104104
"type": 1,

docs/components/using-message-components.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ All content must be sent as components instead of using the standard message for
3939
{
4040
"type": 10,
4141
"content": "This is a message using the Text Display component"
42-
},
42+
}
4343
]
4444
}
4545
```
@@ -59,7 +59,7 @@ To send a message with multiple components, you can include multiple component o
5959
{
6060
"type": 10,
6161
"content": "This is another Text Display component!"
62-
},
62+
}
6363
]
6464
}
6565
```

0 commit comments

Comments
 (0)