From f910851acdfac0921e097465a070e24a6e970052 Mon Sep 17 00:00:00 2001 From: TehBrian <32250137+TehBrian@users.noreply.github.com> Date: Thu, 1 Aug 2024 15:37:22 -0400 Subject: [PATCH] fix persistent() -> persist() method name --- docs/developers/creating-a-placeholderexpansion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/creating-a-placeholderexpansion.md b/docs/developers/creating-a-placeholderexpansion.md index b559a1a..0df5710 100644 --- a/docs/developers/creating-a-placeholderexpansion.md +++ b/docs/developers/creating-a-placeholderexpansion.md @@ -107,7 +107,7 @@ This method of creating a PlaceholderExpansion is recommended as it has the foll Internal PlaceholderExpansions are not automatically registered by PlaceholderAPI, due to them not being a separate jar file located in the expansion folder. Please see the [Regsister your Expansion](#register-your-expansion) section for more details. -You are also required to override and set `persistent()` to `true`. This tells PlaceholderAPI to not unload your expansion during plugin reload, as it would otherwise unregister your expansion, making it no longer work. +You are also required to override and set `persist()` to `true`. This tells PlaceholderAPI to not unload your expansion during plugin reload, as it would otherwise unregister your expansion, making it no longer work. /// /// details | Full Example