From 273dc37905bd5f1bef58a3311ac4da07f7d1068f Mon Sep 17 00:00:00 2001 From: adambezecny Date: Mon, 15 Nov 2021 08:23:50 +0100 Subject: [PATCH] comment typo fix --- src/apis/channels.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/channels.rs b/src/apis/channels.rs index 8765333..4c94f70 100644 --- a/src/apis/channels.rs +++ b/src/apis/channels.rs @@ -22,7 +22,7 @@ pub trait ChannelsAPI { /// Get the value of a channel variable async fn get_variable(&self, channel_id: &str, var_name: &str) -> Result; - /// Get the value of a channel variable + /// Set the value of a channel variable async fn set_variable(&self, channel_id: &str, var_name: &str, var_value: &str) -> Result<()>; /// Hangs up the channel