From 96a5196b059102632d2b5c0b310ff4bf4a262f67 Mon Sep 17 00:00:00 2001 From: JP Date: Fri, 26 Aug 2022 15:34:52 -0500 Subject: [PATCH] Fix grammar in readme (#3251) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e46dde6a5..c4728ce45 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ There are two methods to create an external plugin, you can either: 7. Use the same tool, *Refactor > Rename*, to rename `ExamplePlugin`, `ExampleConfig` and `ExamplePluginTest` to `HelmetCheckPlugin` etc. - 8. Go to your plugin file and set it's name in the `PluginDescriptor`, this can have spaces. + 8. Go to your plugin file and set its name in the `PluginDescriptor`, this can have spaces. 9. Open the `runelite-plugin.properties` file and add info to each row. ``` @@ -63,7 +63,7 @@ There are two methods to create an external plugin, you can either: ``` It will ask you a series of questions, and then generate a folder with the name of your plugin. - 3. Move the generated folder to it's own git repository and open the `build.gradle` file in IntelliJ. + 3. Move the generated folder to its own git repository and open the `build.gradle` file in IntelliJ. 4. In order to make sure everything works correctly, try to start the client with your external plugin enabled by running the test. The test requires `-ea` to be added to your VM options to enable assertions, which can be found in IntellIJ in `Run/Debug Configurations` under `Modify options`, `Add VM options`, and then adding `-ea` into the input field which appears.