diff --git a/README.MD b/README.MD index cd05d01..b928fe0 100644 --- a/README.MD +++ b/README.MD @@ -102,7 +102,7 @@ val clickCount = mutableStateOf(0) // can be any type val holo = hologram(HologramKey(plugin, "unique-id-holo"), location) { textline("{}!", "Static") - textline("Dynamic: {}", clickCount) + textline("Count: {}", clickCount) clickable("Click me", 0.5f, 5f).onClick { clickCount.set(clickCount.get() + 1)} }