No public description

PiperOrigin-RevId: 772611154
diff --git a/fuzztest/internal/runtime.h b/fuzztest/internal/runtime.h
index 520b72f..4c32a00 100644
--- a/fuzztest/internal/runtime.h
+++ b/fuzztest/internal/runtime.h
@@ -65,9 +65,9 @@
 class FuzzTestFuzzer {
  public:
   virtual ~FuzzTestFuzzer() = default;
-  // Returns ture if no error were detected by the FuzzTest, false otherwise.
+  // Returns true if no error were detected by the FuzzTest, false otherwise.
   virtual bool RunInUnitTestMode(const Configuration& configuration) = 0;
-  // Returns ture if no error were detected by the FuzzTest, false otherwise.
+  // Returns true if no error were detected by the FuzzTest, false otherwise.
   virtual bool RunInFuzzingMode(int* argc, char*** argv,
                                 const Configuration& configuration) = 0;
 };