Skip to content

Commit d6cbfdf

Browse files
committed
"data"
1 parent 040b58a commit d6cbfdf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,18 +153,18 @@ The JSONObject can look like this:
153153
"invite": "https://discordapp.com/oauth2/authorize?client_id=123456789012345678&scope=bot",
154154
"list_data": {
155155
"botlist.space": [
156-
{data},
156+
{"data"},
157157
200
158158
],
159159
"lbots.org": [
160-
{data},
160+
{"data"},
161161
404
162162
]
163163
}
164164
}
165165
```
166166

167-
`{data}` is the JSON that is returned by the provided Botlist meaning it's different for each site.
167+
`{"data"}` is the JSON that is returned by the provided Botlist meaning it's different for each site.
168168
`name`, `owners`, `server_count` and `invite` is based on the most common appearances of the data.
169169

170170
### Botinfo from all Botlists
@@ -174,16 +174,16 @@ The returned JSONObject can look like this:
174174
```json
175175
{
176176
"botlist.space": [
177-
{data},
177+
{"data"},
178178
200
179179
],
180180
"lbots.org": [
181-
{data},
181+
{"data"},
182182
404
183183
]
184184
}
185185
```
186-
`{data}` is the JSON that is returned by the provided Botlist meaning it's different for each site.
186+
`{"data"}` is the JSON that is returned by the provided Botlist meaning it's different for each site.
187187

188188
### Botinfo of a single site
189189
With `.getBotInfo(..., String)` can you receive the info of a specific site.

0 commit comments

Comments
 (0)