diff options
Diffstat (limited to 'src/repo/channel.rs')
| -rw-r--r-- | src/repo/channel.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/repo/channel.rs b/src/repo/channel.rs index da63b45..0186413 100644 --- a/src/repo/channel.rs +++ b/src/repo/channel.rs @@ -23,7 +23,6 @@ pub struct Channel { } impl<'c> Channels<'c> { - /// Create a new channel. pub async fn create(&mut self, name: &str) -> Result<Channel, sqlx::Error> { let id = Id::generate(); @@ -78,7 +77,7 @@ impl<'c> Channels<'c> { } } -/// Stable identifier for a [Channel]. Prefixed with `C`. +// Stable identifier for a [Channel]. Prefixed with `C`. #[derive( Clone, Debug, |
