Commit 39039004 authored by Ian Jackson's avatar Ian Jackson
Browse files

tor-proto datastream: Fix typo in Debug impl

parent 3e37d7e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -297,7 +297,7 @@ struct DataWriterImpl {
impl Debug for DataWriterImpl {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("DataWriterImpl")
            .field("sr", &self.s)
            .field("s", &self.s)
            .field("n_pending", &self.n_pending)
            .finish_non_exhaustive()
    }