diff --git a/Home.md b/Home.md index 3777de0..036d0cd 100644 --- a/Home.md +++ b/Home.md @@ -111,9 +111,10 @@ Some points of how the placeholder service works, - hooks directly into external plugins such as PlaceholderAPI - allows declaring placeholders directly in types, example: ```java +@PlaceholderPrefix("player_") public interface Player { - @Placeholder("player_name") + @Placeholder("name") // This will be %player_name% due to the PlaceholderPrefix String username(); ... ```