client/mod.rs: Fix mistake

This commit is contained in:
Hyeon Kim 2023-06-04 01:26:03 +09:00
parent a9b1ea3946
commit 82387576a0
No known key found for this signature in database
GPG key ID: 0F85F46EE242057F

View file

@ -113,11 +113,7 @@ macro_rules! pub_state_base {
} }
/// Joins the specified channel or chanlist using the specified key or keylist. /// Joins the specified channel or chanlist using the specified key or keylist.
pub fn send_join_with_keys<S1, S2>( pub fn send_join_with_keys<S1, S2>(&self, chanlist: S1, keylist: S2) -> error::Result<()>
&self,
chanlist: &str,
keylist: &str,
) -> error::Result<()>
where where
S1: fmt::Display, S1: fmt::Display,
S2: fmt::Display, S2: fmt::Display,