Updates for PR comments.
diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am
index 79581ee..f0ed489 100644
--- a/benchmarks/Makefile.am
+++ b/benchmarks/Makefile.am
@@ -27,8 +27,9 @@
   $(benchmarks_protoc_outputs)                                 \
   $(benchmarks_protoc_outputs_proto2)
 
-# Explicit deps beacuse BUILT_SOURCES are only done before a "make all/check"
+# Explicit deps because BUILT_SOURCES are only done before a "make all/check"
 # so a direct "make test_cpp" could fail if parallel enough.
+# See: https://www.gnu.org/software/automake/manual/html_node/Built-Sources-Example.html#Recording-Dependencies-manually
 generate_datasets-generate_datasets.$(OBJEXT): benchmarks.pb.h google_message1.h google_message2.h
 
 $(benchmarks_protoc_outputs): protoc_middleman
diff --git a/benchmarks/benchmarks.proto b/benchmarks/benchmarks.proto
index 5c2706d..0ac3bf3 100644
--- a/benchmarks/benchmarks.proto
+++ b/benchmarks/benchmarks.proto
@@ -68,16 +68,16 @@
   // A unique ID for these results.  Used for de-duping.
   string guid = 1;
 
-  // The tags specify exactly what benchmark was run against the dataset.
+  // The labels specify exactly what benchmark was run against the dataset.
   // The specific benchmark suite can decide what these mean, but here are
-  // some common tags that have a predefined meaning:
+  // some common labels that have a predefined meaning:
   //
   //   - "dataset": for tests that pertain to a specific dataset.
   //
   // For example:
   //
   //   # Tests parsing from binary proto string using arenas.
-  //   tags={
+  //   labels={
   //     dataset: "testalltypes",
   //     op: "parse",
   //     format: "binaryproto",
@@ -86,7 +86,7 @@
   //   }
   //
   //   # Tests serializing to JSON string.
-  //   tags={
+  //   labels={
   //     dataset: "testalltypes",
   //     op: "serialize",
   //     format: "json",