[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Minor mistake in Bash manual
From: |
Robert Elz |
Subject: |
Re: Minor mistake in Bash manual |
Date: |
Tue, 12 Mar 2019 09:45:05 +0700 |
Date: Mon, 11 Mar 2019 15:55:55 -0500 (CDT)
From: Todd Lehman <tsl@xeow.com>
Message-ID: <alpine.OSX.2.21.1903111553050.2528@media>
| The period (".") after "name" should not be there.
Yet, the rules of grammar say it must be, as that is the end of the
sentence. This is the perennial issue with mixing code samples into
English (or other) text - the rules for the two are different.
The usual solution is to rewrite the sentence so that the code/example is
not at the end, in this case perhaps something like:
The command:
declare -A name
is used to create an associative array.
kre