diff --git a/guides/the-ultimate-guide-to-rust-newtypes.md b/guides/the-ultimate-guide-to-rust-newtypes.md index d79afee..c5fbd70 100644 --- a/guides/the-ultimate-guide-to-rust-newtypes.md +++ b/guides/the-ultimate-guide-to-rust-newtypes.md @@ -29,7 +29,7 @@ struct Wrapper(Vec); impl fmt::Display for Wrapper { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "[{}]", self.0.join(", ")) } + write!(f, "[{}]", self.0.join(", ")) } } ```