Skip to content

Commit b05f671

Browse files
committed
Fixed merge conflict
2 parents 8aa8b63 + 436b8bf commit b05f671

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
@@ -1,7 +1,6 @@
11
# Thresh
22

3-
Thresh is an Object-Oriented Java Library, which takes over the Communication
4-
with the League of Legends API. It supports In-Memory caching and uses a (blocking) Rate Limiter. It makes retrieving Summoner Data, Match History,
3+
Thresh is an Object-Oriented Java Library, which takes over the Communication with the League of Legends API. It supports In-Memory caching and uses a (blocking) Rate Limiter. It makes retrieving Summoner Data, Match History,
54
etc. much easier. For Teamfight Tactics take a look at [Spatula](https://github.com/Petersil1998/Spatula)
65

76
## Usage
@@ -96,7 +95,7 @@ Now Thresh is ready and set up!
9695
League challengers = LoLRanked.getChallengerLeague(RankedQueue.SOLO_DUO, Platform.EUW);
9796
for(LeagueEntry leagueEntry: challengers.getEntries()) {
9897
// Get all players and their LP
99-
Summoner player = Summoner.getSummonerByID(leagueEntry.getSummonerId(), Platform.EUW)
98+
Summoner player = Summoner.getSummonerByID(leagueEntry.getSummonerId(), Platform.EUW);
10099
int playerLp = leagueEntry.getLeaguePoints();
101100
}
102101

@@ -148,7 +147,7 @@ Now Thresh is ready and set up!
148147
}
149148
}
150149
```
151-
The Match History Filter can have those values:
150+
The Match History Filter can have the following values:
152151

153152
| Key | Description | Type |
154153
|-----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------|
@@ -157,8 +156,9 @@ Now Thresh is ready and set up!
157156
| queue | Queue ID. Works mutually inclusive with **type**. [QueueTypes](https://github.com/Petersil1998/Thresh-Java/blob/master/src/main/java/net/petersil98/thresh/collection/QueueTypes.java) contains all valid queues | int |
158157
| type | Type of a Match. Works mutually inclusive with **queue** | String |
159158
| start | The offset of the first Match entry | int |
160-
| count | The Amount of Matches entries to return. Has to be between 0 and 100 | int |
161-
**Note**: *All values need to be passed as **Strings** in the filter*
159+
| count | The Amount of Matches entries to return. Has to be between 0 and 100 | int |
160+
161+
**Note**: *All values need to be passed as **Strings** in the filter*
162162

163163

164164
- **Collections**
@@ -175,4 +175,4 @@ Now Thresh is ready and set up!
175175
- RuneStyles (Precision, Domination, Sorcery, Resolve, Inspiration)
176176
- Summoner Spells
177177

178-
#### Feel free to give Feedback and add suggestions on how this library can be improved. <br>Thank you for using Thresh, you're awesome!
178+
### Feel free to give Feedback and add suggestions on how this library can be improved. <br>Thank you for using Thresh, you're awesome!

0 commit comments

Comments
 (0)