summaryrefslogtreecommitdiffstats
path: root/mqtt-format/src/v5/packets/puback.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mqtt-format/src/v5/packets/puback.rs')
-rw-r--r--mqtt-format/src/v5/packets/puback.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mqtt-format/src/v5/packets/puback.rs b/mqtt-format/src/v5/packets/puback.rs
index 15279be..39a53cf 100644
--- a/mqtt-format/src/v5/packets/puback.rs
+++ b/mqtt-format/src/v5/packets/puback.rs
@@ -74,7 +74,7 @@ impl<'i> MPuback<'i> {
}
pub async fn write<W: WriteMqttPacket>(&self, buffer: &mut W) -> WResult<W> {
- self.packet_identifer.write(buffer).await?;
+ self.packet_identifier.write(buffer).await?;
self.reason.write(buffer).await?;
self.properties.write(buffer).await
}