Improve grammar of PlaceholderExpansion.md

This commit is contained in:
Andre_601 2021-08-23 01:52:10 +02:00 committed by GitHub
parent 8c9a20c035
commit 8105beeee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,6 @@ For starters, you need to decide what type of [`PlaceholderExpansion`][placehold
### Common Parts ### Common Parts
All shown examples will share the same common parts that belong to the [`PlaceholderExpansion`][placeholderexpansion] class. All shown examples will share the same common parts that belong to the [`PlaceholderExpansion`][placeholderexpansion] class.
In order to not repeat the same basic info for each method throughout this page, and to greatly reduce its overall length, we will cover the most basic/necessary ones here. In order to not repeat the same basic info for each method throughout this page, and to greatly reduce its overall length, we will cover the most basic/necessary ones here.
``
#### Basic PlaceholderExpansion Structure #### Basic PlaceholderExpansion Structure
```java ```java
@ -62,9 +61,9 @@ Let's quickly break down the different methods you have to implement.
This method allows you to set the name of the expansion's author. This method allows you to set the name of the expansion's author.
- #### getIdentifier - #### getIdentifier
The name that should be used to identify the placeholders for this expansion. The name that should be used to identify the placeholders for this expansion.
The identifier is the string after the starting `%` and before the first `_` (`%identifier_values%`) and, therefore, cannot contain any `_`s. The identifier is the string after the starting `%` and before the first `_` (`%identifier_values%`) and, therefore, cannot contain `_`, `%` or spaces.
If you want to use `_` in your expansion's name, you can override the optional `getName()` method. If you still want to use the previously mentioned symbols can you override the `getName()` method to change the Expansion's displayname.
- #### getVersion - #### getVersion
This is a string, which means it can contain more than just a number. This is used to determine if a new update is available or not when the expansion is shared on the eCloud. This is a string, which means it can contain more than just a number. This is used to determine if a new update is available or not when the expansion is shared on the eCloud.
For expansions that are part of a plugin, this does not really matter. For expansions that are part of a plugin, this does not really matter.