aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/drive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drive.rs b/src/drive.rs
index 10bcbda..b064a25 100644
--- a/src/drive.rs
+++ b/src/drive.rs
@@ -785,7 +785,7 @@ impl<'a> Iterator for DriveHistory<'a> {
type Item = Result<DriveEntry>;
fn next(&mut self) -> Option<Result<DriveEntry>> {
// pubkey increment-by-one logic here
- // XXX: unwrap. on error, return Some(err), then None?
+ // TODO: unwrap. on error, return Some(err), then None?
if self.current > self.drive.entry_count().unwrap() {
return None;
}