aboutsummaryrefslogtreecommitdiff
path: root/apps/servers/octopus/supergit/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/servers/octopus/supergit/src/lib.rs')
-rw-r--r--apps/servers/octopus/supergit/src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/servers/octopus/supergit/src/lib.rs b/apps/servers/octopus/supergit/src/lib.rs
index df30d996ebed..17c9094c32dd 100644
--- a/apps/servers/octopus/supergit/src/lib.rs
+++ b/apps/servers/octopus/supergit/src/lib.rs
@@ -5,8 +5,10 @@
//! repository, consider using that library instead.
//!
//! supergit aims to make queries into a git repo as typed and easy as
-//! possible. Start by creating a [`Repository`](), and enumerating
-//! or fetching [`Branch`]()es that you are interested in.
+//! possible. Start by creating a
+//! [`Repository`](struct.Repository.html), and enumerating or
+//! fetching [`Branch`](struct.Branch.html)es that you are interested
+//! in.
//!
//! Unlike `libgit2`, this library can resolve reverse dependencies
//! between files, and their commit history. Some of these functions
@@ -27,7 +29,7 @@ pub(crate) use repo::HashId;
pub use repo::Repository;
mod files;
-pub use files::{File, FileTree};
+pub use files::{Yield, FileTree};
use async_std::sync::{Arc, RwLock};
use std::sync::atomic::{AtomicUsize, Ordering};