Skip to content

Commit 94d0669

Browse files
authored
linebrak fix
1 parent d6cbfdf commit 94d0669

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This will also work with ShardManager.
5353
You can post you guild counts to the different Botlists using the BotBlock API.
5454

5555
### Creating an instance of BotBlockAPI
56-
For posting your guild counts towards the BotBlock API you first need to create an instance of the BotBlockAPI class.
56+
For posting your guild counts towards the BotBlock API you first need to create an instance of the BotBlockAPI class.
5757
To do this it's recommended to use `BotBlockAPI.Builder()`.
5858

5959
Here is an example of how it could look like.
@@ -66,7 +66,7 @@ BotBlockAPI api = new BotBlockAPI.Builder()
6666
Remember to use `.build();` at the end to create the class.
6767

6868
### Auto Posting
69-
JavaBotBlockAPI allows you to post the guild counts automatically every X minutes.
69+
JavaBotBlockAPI allows you to post the guild counts automatically every X minutes.
7070
To do this, you first need to get an instance of the RequestHandler and then call `.startAutoPosting(...)`.
7171

7272
Here is an example:
@@ -82,7 +82,7 @@ The delay in which you post the guild counts is set through the `.setUpdateInter
8282
To cancel the auto posting just call `.stopAutoPosting();` in the RequestHandler and it should cancel the scheduler.
8383

8484
### Manually posting
85-
There are methods that allow you to post the guild counts manually.
85+
There are methods that allow you to post the guild counts manually.
8686
To Post your guild counts, just call the `.postGuilds(..., ...)` method in the RequestHandler.
8787

8888
```java
@@ -123,7 +123,7 @@ The returned JSONObject could look like this:
123123
```
124124

125125
### Single Botlist
126-
Calling `.getBotlist(String)` returns a specific Botlist as JSONObject.
126+
Calling `.getBotlist(String)` returns a specific Botlist as JSONObject.
127127
For example does `.getBotlist("lbots.org")` return the following JSONObject:
128128
```json
129129
{
@@ -164,7 +164,7 @@ The JSONObject can look like this:
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
@@ -186,11 +186,11 @@ The returned JSONObject can look like this:
186186
`{"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
189-
With `.getBotInfo(..., String)` can you receive the info of a specific site.
189+
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
193-
You can call `.getOwners(...)` to get the owners of a Bot from all the Botlists.
193+
You can call `.getOwners(...)` to get the owners of a Bot from all the Botlists.
194194
The info is returned as ArrayList and is based on how often the info is provided by the botlists.
195195

196196
## Exceptions

0 commit comments

Comments
 (0)