Skip to content

Commit a7398c0

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents c4803c1 + c890655 commit a7398c0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ for (int i = 0; i < 10; i++) {
7474
Then all you have to do is call `Pages.paginate()` method:
7575

7676
```java
77-
//THIS METHOD REQUIRES 4 VARIABLES:
78-
77+
//THIS METHOD REQUIRES 4 ARGUMENTS:
7978
//THE TARGET MESSAGE (Message)
8079
//THE LIST OF PAGES (any List object)
8180
//THE IDLE TIME BEFORE SHUTTING DOWN (int)
@@ -95,7 +94,7 @@ To categorize it's almost the same process as paginating, however, the type of c
9594
HashMap<String, Page> pages = new HashMap<>();
9695
MessageBuilder mb = new MessageBuilder();
9796

98-
//MANUALLY ADDING 3 CATEGORIES TO THE MAP, YOU COULD USE SOME KIND OF ITERATION TO FILL IT (Map key must be a emote's unicode - See https://emojipedia.org/ for unicodes)
97+
//MANUALLY ADDING 3 CATEGORIES TO THE MAP, YOU COULD USE SOME KIND OF ITERATION TO FILL IT (Map key must be a emoji's unicode or emote name - See https://emojipedia.org/ for unicodes)
9998
mb.setContent("This is category 1");
10099
pages.put("\u26f3", new Page(PageType.TEXT, mb.build()));
101100

@@ -199,4 +198,4 @@ Maven:
199198

200199
## Feedback
201200

202-
If you have any issues using this library, feel free to create a new issue on this repository. I'll review it as soon as possible!
201+
If you have any issues using this library, feel free to create a new issue on this repository and I'll review it as soon as possible!

0 commit comments

Comments
 (0)