From 4233e88d1c4708f93e15d81895665d4cd5a9f318 Mon Sep 17 00:00:00 2001 From: Undeadamien Date: Wed, 22 Apr 2026 10:33:57 +0200 Subject: [PATCH] fix `getAnyConfigValue` note to reference value counterpart instead of ptr --- include/hyprlang.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hyprlang.hpp b/include/hyprlang.hpp index f6c28da..ca2b239 100644 --- a/include/hyprlang.hpp +++ b/include/hyprlang.hpp @@ -428,7 +428,7 @@ namespace Hyprlang { - `name` -> `general:gaps_out` - `category[key]:name` -> `windowrule[name]:enable` - \note Prefer `getConfigValuePtr` or `getSpecialConfigValuePtr` to avoid unnecessary lookup and parsing. + \note Prefer `getConfigValue` or `getSpecialConfigValue` to avoid unnecessary lookup and parsing. */ std::any getAnyConfigValue(const char* name) { CConfigValue* val = getAnyConfigValuePtr(name);