diff options
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index bf39d0f06..a557d1355 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -199,7 +199,7 @@ namespace RTLIL bool operator==(IdString rhs) const { return index_ == rhs.index_; } bool operator!=(IdString rhs) const { return index_ != rhs.index_; } - // The methods below are just convinience functions for better compatibility with std::string. + // The methods below are just convenience functions for better compatibility with std::string. bool operator==(const std::string &rhs) const { return str() == rhs; } bool operator!=(const std::string &rhs) const { return str() != rhs; } |