From 76df320ba894f77f4d5de456274fcc52f152faf6 Mon Sep 17 00:00:00 2001 From: Revxrsal Date: Sat, 14 Dec 2024 23:47:37 +0300 Subject: [PATCH] grammar --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 292f0c1..8abd9c7 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Finally, build with `shadowJar`: ### With Maven -Unfortunately, Maven usage is not as smooth as the Gradle one. However, you can use the API +Sadly, Maven usage is not as seamless as the Gradle one. However, you can use the API provided by Zapper to download dependencies at runtime: To add the Zapper API: @@ -164,7 +164,7 @@ public final class MyPlugin extends MyPluginBase { ``` ### Extending custom JavaPlugin classes -If you, for some reason, would like to extend a different class than a JavaPlugin, and is using the Gradle plugin, you can avoid extending the ZapperJavaPlugin class by doing the following: +If you, for some reason, would like to extend a different class than a JavaPlugin, and are using the Gradle plugin, you can avoid extending the ZapperJavaPlugin class by doing the following: 1. Declare a **base** class that extends the custom JavaPlugin class: ```java public abstract class MyPluginBase extends CustomJavaPlugin {