Skip to content

Commit

Permalink
weird
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed May 11, 2019
1 parent 4592336 commit 0f2ef19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trace/mod.rs
Expand Up @@ -180,7 +180,7 @@ pub trait BatchReader<K, V, T, R> where Self: ::std::marker::Sized
/// The number of updates in the batch.
fn len(&self) -> usize;
/// True if the batch is empty.
fn is_empty(&self) -> usize { self.len() == 0 }
fn is_empty(&self) -> bool { self.len() == 0 }
/// Describes the times of the updates in the batch.
fn description(&self) -> &Description<T>;

Expand Down

0 comments on commit 0f2ef19

Please sign in to comment.