Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Keisuke KIMURA <[email protected]>
  • Loading branch information
toru-fukaya and kei1107 authored Sep 2, 2024
1 parent 7f5269d commit d73d3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub fn channel_type(api_token: &str, channel: &str) -> Result<ChannelType> {
} else if let Some(true) = response["is_im"].as_bool() {
ChannelType::DirectMessage
} else {
return Err(SlackError::InvaliedConversation.into());
return Err(SlackError::InvalidConversation.into());
})
}

Expand Down

0 comments on commit d73d3c1

Please sign in to comment.