Google-internal change.

PiperOrigin-RevId: 548113299
Change-Id: Ie75b034b0653e33ebdf028772c586d5056bbc0f9
diff --git a/README.md b/README.md
index 72addca..ebf23ba 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
 # Crubit: C++/Rust Bidirectional Interop Tool
 
-
 [![Build status](https://badge.buildkite.com/7a57a14e68aa3a0ab70972cbf2a35fd79d342ba152fee4a5b4.svg)](https://buildkite.com/bazel/crubit)
 
 Crubit is an experimental bidirectional bindings generator for C++ and Rust.
@@ -9,8 +8,9 @@
 us. There will be breaking changes without warning.  Unfortunately, we can't
 take contributions at this point.
 
-Crubit allows for C++ code and Rust code to call each other without manually wrapping the APIs in an FFI-friendly interop layer. For example, a C++ function like
-this:
+Crubit allows for C++ code and Rust code to call each other without manually
+wrapping the APIs in an FFI-friendly interop layer. For example, a C++ function
+like this:
 
 ```c++
 bool IsAbsPath(std::string_view path);