[NFC][scudo] Fix typo in comment am: f00eda635e

Original change: https://android-review.googlesource.com/c/platform/external/scudo/+/1716960

Change-Id: Iad08f817abade316bde429982a860d8abdc919a9
diff --git a/standalone/tests/combined_test.cpp b/standalone/tests/combined_test.cpp
index 619a94c..7711637 100644
--- a/standalone/tests/combined_test.cpp
+++ b/standalone/tests/combined_test.cpp
@@ -193,7 +193,7 @@
 SCUDO_TYPED_TEST(ScudoCombinedTest, ZeroFill) {
   auto *Allocator = this->Allocator.get();
 
-  // Ensure that specifying ZeroContents returns a zero'd out block.
+  // Ensure that specifying ZeroFill returns a zero'd out block.
   Allocator->setFillContents(scudo::ZeroFill);
   for (scudo::uptr SizeLog = 0U; SizeLog <= 20U; SizeLog++) {
     for (scudo::uptr Delta = 0U; Delta <= 4U; Delta++) {