diff --git a/docs/references/elements/DropDown.md b/docs/references/elements/DropDown.md index bb51e31..e03e98b 100644 --- a/docs/references/elements/DropDown.md +++ b/docs/references/elements/DropDown.md @@ -26,7 +26,7 @@ foreground = colors.white text = "Option 1", callback = function(self) -- Handle selection -basalt.debug("Selected Option 1") +basalt.LOGGER.debug("Selected Option 1") end }, { @@ -39,7 +39,7 @@ selectedForeground = colors.white -- Listen for selections dropdown:onChange(function(self, value) -basalt.debug("Selected:", value) +basalt.LOGGER.debug("Selected:", value) end) basalt.run()