From 9e0075a3d902aa5236bbfdc0ad0d3028a55dc17e Mon Sep 17 00:00:00 2001 From: Gannon McGibbon Date: Wed, 6 Jan 2021 12:20:03 -0500 Subject: Replace "iff" with "if and only if" iff means if and only if, but readers without that knowledge might assume this to be a spelling mistake. To me, this seems like exclusionary language that is unnecessary. Simply using "if and only if" instead should suffice. --- include/ruby/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ruby/assert.h') diff --git a/include/ruby/assert.h b/include/ruby/assert.h index 9b70d7103e..b0bbdd2c14 100644 --- a/include/ruby/assert.h +++ b/include/ruby/assert.h @@ -167,7 +167,7 @@ RBIMPL_SYMBOL_EXPORT_END() #define RUBY_ASSERT_ALWAYS(expr) RUBY_ASSERT_MESG((expr), #expr) /** - * Asserts that the given expression is truthy iff #RUBY_DEBUG is truthy. + * Asserts that the given expression is truthy if and only if #RUBY_DEBUG is truthy. * * @param expr What supposedly evaluates to true. */ -- cgit v1.2.3