Typo in README
See original GitHub issueDescribe the bug Typo in README
Source Readme
Error
public void startup(){
DiscordEventHandlers handlers = new DiscordEventHandler.Build().setReadyEventHandler((user) -> {
System.out.println("Welcome " + user.username + "#" + user.discriminator + "!");
}).build();
DiscordRPC.initialize("1234567890", handler, true);
}
->
public void startup(){
DiscordEventHandlers handlers = new DiscordEventHandler.Build().setReadyEventHandler((user) -> {
System.out.println("Welcome " + user.username + "#" + user.discriminator + "!");
}).build();
DiscordRPC.initialize("1234567890", handlers, true);
}
or
public void startup(){
DiscordEventHandlers handler = new DiscordEventHandler.Build().setReadyEventHandler((user) -> {
System.out.println("Welcome " + user.username + "#" + user.discriminator + "!");
}).build();
DiscordRPC.initialize("1234567890", handler, true);
}
Versions (Must be completed):
- OS Ver: No
- Java Version: No
- Library Version: Master branch
Additional info Typo in readme
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
typo/README.md at master · browserslist/typo - GitHub
Package to help in popular typo: browserlist instead of browserslist - typo/README.md at master · browserslist/typo.
Read more >github - Should I submit a pull request to correct minor typos in ...
Having multiple typos in a README, assuming they are real typos and not regional spelling differences, is less than ideal, ...
Read more >Error Pages - ReadMe Documentation
Say your product pops up an error code. You can be extra helpful, and easily link from that error code to a documentation...
Read more >Typo error in README.md file [#3303567] | Drupal.org
This patch resolves the typing error from the README.md file. Patch is works fine for me. This issue can be move in RTBC....
Read more >Correct a typo in README.md - Merge requests - KDE Invent
An error occurred while retrieving approval data for this merge request. Correct a typo in README.md. Code. Review changes. Check out branch ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@DeJayDev… Also change
new DiscordEventHandler.Build()
tonew DiscordEventHandlers.Builder()
because the class is namedDiscordEventHandlers
.And it should be
new DiscordEventHandlers.Builder()
because the inner class isBuilder
and notBuild