commit 92217e0c98d1ed5fb0629e1b00c0453dc17d2e9b
parent a8e6a06bd4d3c6845c02fa9e401c6a33981c11a2
Author: Dalton Messmer <messmerd97@gmail.com>
Date: Fri, 3 Nov 2023 00:51:11 -0400
Fix style
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/clap/ext/note-ports.h b/include/clap/ext/note-ports.h
@@ -40,7 +40,7 @@ typedef struct clap_note_port_info {
// The note ports scan has to be done while the plugin is deactivated.
typedef struct clap_plugin_note_ports {
- // Number of ports, for either input or output
+ // Number of ports, for either input or output.
// [main-thread]
uint32_t(CLAP_ABI *count)(const clap_plugin_t *plugin, bool is_input);
diff --git a/include/clap/ext/timer-support.h b/include/clap/ext/timer-support.h
@@ -16,7 +16,8 @@ typedef struct clap_plugin_timer_support {
typedef struct clap_host_timer_support {
// Registers a periodic timer.
// The host may adjust the period if it is under a certain threshold.
- // 30 Hz should be allowed. Returns true on success.
+ // 30 Hz should be allowed.
+ // Returns true on success.
// [main-thread]
bool(CLAP_ABI *register_timer)(const clap_host_t *host, uint32_t period_ms, clap_id *timer_id);