fix comment typo to cycle bots

GitOrigin-RevId: 742f663705bbf076c2f7f1459182d5928feb1ec8
diff --git a/MachO/MapFile.cpp b/MachO/MapFile.cpp
index a10516f..621b52f 100644
--- a/MachO/MapFile.cpp
+++ b/MachO/MapFile.cpp
@@ -104,14 +104,14 @@
     return;
   }
 
-  // Dump output path
+  // Dump output path.
   os << format("# Path: %s\n", config->outputFile.str().c_str());
 
-  // Dump output architecure
+  // Dump output architecture.
   os << format("# Arch: %s\n",
                getArchitectureName(config->target.Arch).str().c_str());
 
-  // Dump table of object files
+  // Dump table of object files.
   os << "# Object files:\n";
   os << format("[%3u] %s\n", 0, (const char *)"linker synthesized");
   uint32_t fileIndex = 1;