Ignore doctest

This commit is contained in:
Benedikt Terhechte 2021-12-10 21:57:42 +01:00
parent 71f599d58e
commit f115da304a
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ impl Database {
/// ///
/// # Examples /// # Examples
/// ///
/// ``` /// ``` ignore
/// let db = Database::new("db.sqlite").unwrap(); /// let db = Database::new("db.sqlite").unwrap();
/// let (sender, handle) = db.import(); /// let (sender, handle) = db.import();
/// sender.send(DBMessage::Mail(m1)).unwrap(); /// sender.send(DBMessage::Mail(m1)).unwrap();

View File

@ -203,7 +203,7 @@ impl Engine {
/// Returns true if there're currently calculations open and `process` /// Returns true if there're currently calculations open and `process`
/// needs to be called. This can be used in `Eventloop` based frameworks /// needs to be called. This can be used in `Eventloop` based frameworks
/// such as `egui` to know when to continue calling `process` in the `loop` /// such as `egui` to know when to continue calling `process` in the `loop`
/// ``` /// ```ignore
/// loop { /// loop {
/// self.engine.process().unwrap(); /// self.engine.process().unwrap();
/// if self.engine.is_busy() { /// if self.engine.is_busy() {