Fix grammar in readme (#3251)

This commit is contained in:
JP
2022-08-26 15:34:52 -05:00
committed by GitHub
parent 5d5c95f91e
commit 96a5196b05

View File

@@ -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.