From 744d9878d3245810619d01b380141083bfc2f635 Mon Sep 17 00:00:00 2001 From: Alexandre Bique Date: Wed, 24 Apr 2024 10:29:40 +0200 Subject: [PATCH] Update include/clap/ext/draft/undo.h Co-authored-by: Dalton Messmer --- include/clap/ext/draft/undo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clap/ext/draft/undo.h b/include/clap/ext/draft/undo.h index 3341df9a..c5968fea 100644 --- a/include/clap/ext/draft/undo.h +++ b/include/clap/ext/draft/undo.h @@ -51,9 +51,9 @@ enum clap_undo_delta_properties_flags { // If set, then the plugin will provide deltas in host->change_made(). CLAP_UNDO_DELTA_PROPERTIES_HAS_DELTA = 1 << 0, - // If set, then the delta will be re-usable in the future as long as the plugin is + // If set, then the delta will be reusable in the future as long as the plugin is // compatible with the given format_version. - CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 1, + CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTENT = 1 << 1, }; typedef struct clap_undo_delta_properties {