From: Alexander Popov Date: Sun, 8 Mar 2020 20:53:52 +0000 (+0300) Subject: Fix the comments X-Git-Tag: v0.5.5~20 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=f4f3414d16171ac1acbe20bb55a77001b60c16ef;p=kconfig-hardened-check.git Fix the comments --- diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 3efaf40..55e46a3 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -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(, ) # OR(, ) @@ -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 is not checked if checking of the main_option is failed.