From f01a9b7d35e1140317e824a7df39aa1cb15c6963 Mon Sep 17 00:00:00 2001
From: wez <wez@chromium.org>
Date: Fri, 18 Mar 2016 18:18:07 -0700
Subject: [PATCH] Fix sense of CheckOpResult comment.

Committed: https://crrev.com/b7662fc32246dda98df64fd8aa41fddbaae7d2be
Cr-Commit-Position: refs/heads/master@{#382056}

Review URL: https://codereview.chromium.org/1808053002

Cr-Commit-Position: refs/heads/master@{#382167}
---
 base/logging.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base/logging.h b/base/logging.h
index 2c8959c72c95a..07674698e0220 100644
--- a/base/logging.h
+++ b/base/logging.h
@@ -430,7 +430,7 @@ const LogSeverity LOG_0 = LOG_ERROR;
 // boolean.
 class CheckOpResult {
  public:
-  // |message| must be non-null iff the check failed.
+  // |message| must be non-null if and only if the check failed.
   CheckOpResult(std::string* message) : message_(message) {}
   // Returns true if the check succeeded.
   operator bool() const { return !message_; }