From dd1b493da24f56055f6df6284ce6d88af2999a3f Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 31 May 2020 17:11:17 -0300 Subject: [PATCH] fix typo --- src/lang.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lang.zig b/src/lang.zig index fbc5bf7..d855a47 100644 --- a/src/lang.zig +++ b/src/lang.zig @@ -59,13 +59,13 @@ pub const NewCommandType = enum { fn LV2Command( comptime tag: NewCommand.Tag, - comptime lv2_url: []const u8, + comptime plugin_url: []const u8, comptime LV2Parameters: type, ) type { return struct { pub const base_tag = tag; pub const command_type = NewCommandType.lv2_command; - pub const lv2_url = lv2_url; + pub const lv2_url = plugin_url; base: NewCommand, split: usize,