Commit d549844c authored by eta's avatar eta
Browse files

Merge branch 'debug-datastream' into 'main'

tor-proto datastream: Fix typo in Debug impl

See merge request !354
parents c2f7b597 39039004
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()
    }