### What it does I accidentially used ```rust let a = &[b'a', b'/', b'b']; ``` instead of ```rust let a = b"a/b"; ``` so I figured this could be a clippy lint. ### Lint Name bytestring_instead_of_byte_chars ### Category style ### Advantage - Easier to read - Easier to change/extend ### Drawbacks None ### Example ```rust let a = &[b'a', b'/', b'b']; ``` Could be written as: ```rust let a = b"a/b"; ```