Fix the comments
authorAlexander Popov <alex.popov@linux.com>
Sun, 8 Mar 2020 20:53:52 +0000 (23:53 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 8 Mar 2020 20:59:13 +0000 (23:59 +0300)
kconfig-hardened-check.py

index 3efaf403b5650066e184f128f0033ebdd64097ce..55e46a34f05a4922c7084b0e71a5256c1fd43775 100755 (executable)
@@ -140,7 +140,7 @@ class ComplexOptCheck:
 
 
 class OR(ComplexOptCheck):
-    # self.opts[0] is the option which this OR-check is about.
+    # self.opts[0] is the option that this OR-check is about.
     # Use case:
     #     OR(<X_is_hardened>, <X_is_disabled>)
     #     OR(<X_is_hardened>, <X_is_hardened_old>)
@@ -162,7 +162,7 @@ class OR(ComplexOptCheck):
 
 
 class AND(ComplexOptCheck):
-    # self.opts[0] is the option which this AND-check is about.
+    # self.opts[0] is the option that this AND-check is about.
     # Use case: AND(<suboption>, <main_option>)
     # Suboption is not checked if checking of the main_option is failed.