diff --git a/README.md b/README.md
index 298134e..26f2ca5 100644
--- a/README.md
+++ b/README.md
@@ -20,3 +20,9 @@ Testing
-------
$ cargo test
+
+Code Format
+-----------
+The formatting options currently use nightly-only options.
+
+ $ cargo +nightly fmt
diff --git a/src/decoder.rs b/src/decoder.rs
index 45d2d40..dc0ad1d 100644
--- a/src/decoder.rs
+++ b/src/decoder.rs
@@ -743,7 +743,7 @@ fn decode_publish_complete(
fn decode_subscribe(
bytes: &mut Cursor<&mut BytesMut>,
remaining_packet_length: u32,
- protocol_version: &ProtocolVersion,
+ protocol_version: ProtocolVersion,
) -> Result