[sw] Fix formatting in comment

Signed-off-by: Philipp Wagner <phw@lowrisc.org>
diff --git a/sw/device/lib/testing/mock_mmio.h b/sw/device/lib/testing/mock_mmio.h
index 8865ef9..4b4dcc0 100644
--- a/sw/device/lib/testing/mock_mmio.h
+++ b/sw/device/lib/testing/mock_mmio.h
@@ -121,10 +121,8 @@
   Int val = 0;
   for (auto field : fields) {
     // Due to the way that gtest ASSERT_* works, and the fact that this must be
-    // a
-    // function (since we use function overloading), these cannot be ASSERTs,
-    // and
-    // must be EXPECTs.
+    // a function (since we use function overloading), these cannot be ASSERTs,
+    // and must be EXPECTs.
     EXPECT_LE(field.offset, sizeof(Int) * 8);
     val |= static_cast<Int>(field.value << field.offset);
   }