fix doc tests

This commit is contained in:
Aiden McClelland 2020-10-13 14:56:27 -06:00
parent 24aac22b89
commit f167aad0fb
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ use std::fmt::Debug;
/// # let conn = ();
/// #
/// let result: Result<(), ()> = Inbox::handle(&conn, activity_json)
/// .with::<User, Announce, Message>()
/// .with::<User, Create, Message>()
/// .with::<User, Announce, Message>(None)
/// .with::<User, Create, Message>(None)
/// .done();
/// ```
pub enum Inbox<'a, C, E, R>