Fix some long lines.
diff --git a/asio/include/asio/impl/spawn.hpp b/asio/include/asio/impl/spawn.hpp
index 7661abc..82a05f0 100644
--- a/asio/include/asio/impl/spawn.hpp
+++ b/asio/include/asio/impl/spawn.hpp
@@ -166,7 +166,9 @@
 
     return_type get()
     {
-      handler_.coro_.reset(); // Must not hold shared_ptr to coro while suspended.
+      // Must not hold shared_ptr to coro while suspended.
+      handler_.coro_.reset();
+
       if (--ready_ != 0)
         ca_();
       if (!out_ec_ && ec_) throw asio::system_error(ec_);
@@ -201,7 +203,9 @@
 
     void get()
     {
-      handler_.coro_.reset(); // Must not hold shared_ptr to coro while suspended.
+      // Must not hold shared_ptr to coro while suspended.
+      handler_.coro_.reset();
+
       if (--ready_ != 0)
         ca_();
       if (!out_ec_ && ec_) throw asio::system_error(ec_);
diff --git a/asio/src/tests/unit/ip/tcp.cpp b/asio/src/tests/unit/ip/tcp.cpp
index 8217d05..22cee2a 100644
--- a/asio/src/tests/unit/ip/tcp.cpp
+++ b/asio/src/tests/unit/ip/tcp.cpp
@@ -783,7 +783,8 @@
 struct move_accept_handler
 {
   move_accept_handler() {}
-  void operator()(const asio::error_code&, asio::ip::tcp::socket) {}
+  void operator()(
+      const asio::error_code&, asio::ip::tcp::socket) {}
   move_accept_handler(move_accept_handler&&) {}
 private:
   move_accept_handler(const move_accept_handler&) {}