Format with wrap_comments = true
diff --git a/src/lib.rs b/src/lib.rs
index c0398f2..4a827b6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -672,7 +672,8 @@
 ///
 /// If present, either of these would be an error using `from_str`.
 ///
-/// *This function is available if Syn is built with the `"parsing"` and `"full"` features.*
+/// *This function is available if Syn is built with the `"parsing"` and
+/// `"full"` features.*
 ///
 /// # Examples
 ///
diff --git a/src/punctuated.rs b/src/punctuated.rs
index ecd18b4..6b29176 100644
--- a/src/punctuated.rs
+++ b/src/punctuated.rs
@@ -4,7 +4,8 @@
 //!
 //! - The fields of a struct are `Punctuated<Field, Token![,]>`.
 //! - The segments of a path are `Punctuated<PathSegment, Token![::]>`.
-//! - The bounds on a generic parameter are `Punctuated<TypeParamBound, Token![+]>`.
+//! - The bounds on a generic parameter are `Punctuated<TypeParamBound,
+//!   Token![+]>`.
 //! - The arguments to a function call are `Punctuated<Expr, Token![,]>`.
 //!
 //! This module provides a common representation for these punctuated sequences