Update PlaceholderExpansion.md

This commit is contained in:
Andre_601 2020-07-31 18:03:51 +02:00 committed by GitHub
parent b24b127ad5
commit 62c93465f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -69,7 +69,7 @@ public class SomeExpansion extends PlaceholderExpansion {
* <br>This is what tells PlaceholderAPI to call our onRequest
* method to obtain a value if a placeholder starts with our
* identifier.
* <br>This must be unique and can not contain % or _
* <br>The identifier has to be lowercase and can't contain _ or %
*
* @return The identifier in {@code %<identifier>_<value>%} as String.
*/
@ -182,7 +182,7 @@ public class SomeExpansion extends PlaceholderExpansion {
* <br>This is what tells PlaceholderAPI to call our onRequest
* method to obtain a value if a placeholder starts with our
* identifier.
* <br>This must be unique and can not contain % or _
* <br>The identifier has to be lowercase and can't contain _ or %
*
* @return The identifier in {@code %<identifier>_<value>%} as String.
*/
@ -329,7 +329,7 @@ public class SomeExpansion extends PlaceholderExpansion {
* <br>This is what tells PlaceholderAPI to call our onRequest
* method to obtain a value if a placeholder starts with our
* identifier.
* <br>This must be unique and can not contain % or _
* <br>The identifier has to be lowercase and can't contain _ or %
*
* @return The identifier in {@code %<identifier>_<value>%} as String.
*/
@ -408,4 +408,4 @@ public class SomePlugin extends JavaPlugin{
}
}
}
```
```