From bd4809d9b968cac75a9b15593d9c3e63611857f0 Mon Sep 17 00:00:00 2001 From: Alexandre Bique Date: Fri, 3 Nov 2023 03:45:27 +0100 Subject: [PATCH] Simplify the wording --- include/clap/ext/params.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h index 9b613918..d51846c5 100644 --- a/include/clap/ext/params.h +++ b/include/clap/ext/params.h @@ -196,9 +196,9 @@ enum { // processed. CLAP_PARAM_REQUIRES_PROCESS = 1 << 15, - // Indicates that this parameter represents an enumerated value. + // This parameter represents an enumerated value. // If you set this flag, then you must set CLAP_PARAM_IS_STEPPED too. - // All values from min to max must have a non blank value_to_text(). + // All values from min to max must not have a blank value_to_text(). CLAP_PARAM_IS_ENUM = 1 << 16, }; typedef uint32_t clap_param_info_flags;