diff mbox

dash.1 - correct typos, iff -> if

Message ID EZKDOBCHTC.2N6QQKBMS4HNX@sutro.larryhynes.com (mailing list archive)
State Rejected
Delegated to: Herbert Xu
Headers show

Commit Message

Larry Hynes March 27, 2018, 6:29 p.m. UTC
--
To unsubscribe from this list: send the line "unsubscribe dash" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Harald van Dijk March 27, 2018, 6:39 p.m. UTC | #1
Hi,

This has been brought up before. "iff" not a typo, but a fairly common 
way of writing "if and only if".

Cheers,
Harald van Dijk
--
To unsubscribe from this list: send the line "unsubscribe dash" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Jonathan Nieder March 27, 2018, 6:45 p.m. UTC | #2
Harald van Dijk wrote:

> This has been brought up before. "iff" not a typo, but a fairly common way
> of writing "if and only if".

Larry, care to resend your patch with a clarified commit message and
expanding "iff" to "if and only if" instead of contracting it to "if"?

Thanks,
Jonathan
--
To unsubscribe from this list: send the line "unsubscribe dash" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Larry Hynes March 27, 2018, 7:23 p.m. UTC | #3
Jonathan Nieder <jrnieder@gmail.com> wrote:
> Harald van Dijk wrote:
> 
> > This has been brought up before. "iff" not a typo, but a fairly common way
> > of writing "if and only if".
> 
> Larry, care to resend your patch with a clarified commit message and
> expanding "iff" to "if and only if" instead of contracting it to "if"?

Funny, I did wonder if it might be a contraction, but I did find
it odd that it's not mentioned or explained. I'll leave it be, if
you all are happy enough to keep it 'as is', or can resubmit if you
think it's warranted. Sorry about the noise.
--
To unsubscribe from this list: send the line "unsubscribe dash" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/src/dash.1 b/src/dash.1
index 1056285..2a363b2 100644
--- a/src/dash.1
+++ b/src/dash.1
@@ -606,10 +606,10 @@  and
 .Dq ||
 are AND-OR list operators.
 .Dq &&
-executes the first command, and then executes the second command iff the
+executes the first command, and then executes the second command if the
 exit status of the first command is zero.
 .Dq ||
-is similar, but executes the second command iff the exit status of the first
+is similar, but executes the second command if the exit status of the first
 command is nonzero.
 .Dq &&
 and