Skip to content

Commit c781f00

Browse files
committed
Change <data> to {data}
1 parent 738fe99 commit c781f00

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 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,24 +174,24 @@ 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.
190190
The returned data depends on the selected site and can be different for each one.
191191

192192
### Owners
193193
You can call `.getOwners(...)` to get the owners of a Bot from all the Botlists.
194-
The info is returned as JSONArray and is based on how often the info is provided by the botlists.
194+
The info is returned as ArrayList and is based on how often the info is provided by the botlists.
195195

196196
## Exceptions
197197
When you post the guild counts you could encounter certain Exceptions.

0 commit comments

Comments
 (0)