Internal Change.

PiperOrigin-RevId: 807916480
diff --git a/src/google/protobuf/repeated_field.h b/src/google/protobuf/repeated_field.h
index e71609a..885b52b 100644
--- a/src/google/protobuf/repeated_field.h
+++ b/src/google/protobuf/repeated_field.h
@@ -830,7 +830,7 @@
 template <typename Element>
 inline const Element& RepeatedField<Element>::Get(int index) const
     ABSL_ATTRIBUTE_LIFETIME_BOUND {
-    internal::RuntimeAssertInBounds(index, size());
+  internal::RuntimeAssertInBounds(index, size());
   return elements(is_soo())[index];
 }
 
@@ -853,7 +853,7 @@
 template <typename Element>
 inline Element* RepeatedField<Element>::Mutable(int index)
     ABSL_ATTRIBUTE_LIFETIME_BOUND {
-    internal::RuntimeAssertInBounds(index, size());
+  internal::RuntimeAssertInBounds(index, size());
   return &elements(is_soo())[index];
 }
 
@@ -1284,7 +1284,6 @@
 PROTOBUF_EXPORT size_t
 RepeatedField<absl::Cord>::SpaceUsedExcludingSelfLong() const;
 
-
 // -------------------------------------------------------------------
 
 // Iterators and helper functions that follow the spirit of the STL