diff --git a/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html b/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html
index 85b05f1c7..9ce4118e1 100644
--- a/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html
+++ b/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html
@@ -1088,10 +1088,10 @@
1088impl From<EncryptionLevel> for PacketType {
1089 fn from(encryption_level: EncryptionLevel) -> Self {
1090 match encryption_level {
-1091 EncryptionLevel::Initial => PacketType::Initial,
-1092 EncryptionLevel::Handshake => PacketType::Handshake,
-1093 EncryptionLevel::ZeroRtt => PacketType::ZeroRtt,
-1094 EncryptionLevel::OneRtt => PacketType::OneRtt,
+1091 EncryptionLevel::Initial => Self::Initial,
+1092 EncryptionLevel::Handshake => Self::Handshake,
+1093 EncryptionLevel::ZeroRtt => Self::ZeroRtt,
+1094 EncryptionLevel::OneRtt => Self::OneRtt,
1095 }
1096 }
1097}