From 3938f6f84c464ed9fe2d5807aa51bd470bce8763 Mon Sep 17 00:00:00 2001 From: SuprexDE <46200229+SuprexDE@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:11:47 +0200 Subject: [PATCH] Fix incorrect example in readme (#4) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07299fb..13405fd 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ compileOnly 'net.luckperms:rest-api-client:0.1' Then, create a new client and start making calls: ```java -LuckPermsClient client = LuckPermsClient.builder() +LuckPermsRestClient client = LuckPermsRestClient.builder() .baseUrl("http://localhost:8080") .apiKey("abc123") .build();