Fix comment indents
diff --git a/README.md b/README.md
index cd52e35..bb68bf7 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@
     ... image->height;
     ... image->depth;     // If >8, all plane ptrs below are uint16_t*
     ... image->yuvFormat; // U and V planes might be smaller than Y based on format,
-                            // use avifGetPixelFormatInfo() to find out in a generic way
+                          // use avifGetPixelFormatInfo() to find out in a generic way
 
     // Option 1: Use YUV planes directly
     ... image->yuvPlanes;
@@ -120,7 +120,7 @@
         ... decoder->image->height;
         ... decoder->image->depth;     // If >8, all plane ptrs below are uint16_t*
         ... decoder->image->yuvFormat; // U and V planes might be smaller than Y based on format,
-                                        // use avifGetPixelFormatInfo() to find out in a generic way
+                                       // use avifGetPixelFormatInfo() to find out in a generic way
 
         // See Basic Decoding example for color profile and metadata querying