aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/internal/attr
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/internal/attr')
-rw-r--r--include/ruby/internal/attr/const.h2
-rw-r--r--include/ruby/internal/attr/constexpr.h2
-rw-r--r--include/ruby/internal/attr/pure.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/ruby/internal/attr/const.h b/include/ruby/internal/attr/const.h
index d5b8da0c2d..b1f27e2606 100644
--- a/include/ruby/internal/attr/const.h
+++ b/include/ruby/internal/attr/const.h
@@ -36,7 +36,7 @@
# define RBIMPL_ATTR_CONST() /* void */
#endif
-/** Enables #RBIMPL_ATTR_CONST iff. ! #RUBY_DEBUG. */
+/** Enables #RBIMPL_ATTR_CONST if and only if. ! #RUBY_DEBUG. */
#if !RUBY_DEBUG
# define RBIMPL_ATTR_CONST_UNLESS_DEBUG() RBIMPL_ATTR_CONST()
#else
diff --git a/include/ruby/internal/attr/constexpr.h b/include/ruby/internal/attr/constexpr.h
index 96b010ce6f..dabb72434b 100644
--- a/include/ruby/internal/attr/constexpr.h
+++ b/include/ruby/internal/attr/constexpr.h
@@ -75,7 +75,7 @@
# define RBIMPL_ATTR_CONSTEXPR(_) /* void */
#endif
-/** Enables #RBIMPL_ATTR_CONSTEXPR iff. ! #RUBY_DEBUG. */
+/** Enables #RBIMPL_ATTR_CONSTEXPR if and only if. ! #RUBY_DEBUG. */
#if !RUBY_DEBUG
# define RBIMPL_ATTR_CONSTEXPR_UNLESS_DEBUG(_) RBIMPL_ATTR_CONSTEXPR(_)
#else
diff --git a/include/ruby/internal/attr/pure.h b/include/ruby/internal/attr/pure.h
index 1a10540ef3..4416c25aa0 100644
--- a/include/ruby/internal/attr/pure.h
+++ b/include/ruby/internal/attr/pure.h
@@ -33,7 +33,7 @@
# define RBIMPL_ATTR_PURE() /* void */
#endif
-/** Enables #RBIMPL_ATTR_PURE iff. ! #RUBY_DEBUG. */
+/** Enables #RBIMPL_ATTR_PURE if and only if. ! #RUBY_DEBUG. */
#if !RUBY_DEBUG
# define RBIMPL_ATTR_PURE_UNLESS_DEBUG() RBIMPL_ATTR_PURE()
#else