Path: csiph.com!xmission!news.snarked.org!nntp.club.cc.cmu.edu!micro-heart-of-gold.mit.edu!bloom-beacon.mit.edu!bloom-beacon.mit.edu!171.64.64.130.MISMATCH!usenet.stanford.edu!not-for-mail From: Jorge Maldonado Ventura Newsgroups: gnu.bash.bug Subject: Fix error from documentation Date: Tue, 8 May 2018 12:36:17 +0200 Lines: 45 Approved: bug-bash@gnu.org Message-ID: NNTP-Posting-Host: lists.gnu.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------86C986AD6518CAC2FB07FB48" X-Trace: usenet.stanford.edu 1525775815 21308 208.118.235.17 (8 May 2018 10:36:55 GMT) X-Complaints-To: action@cs.stanford.edu To: bug-bash@gnu.org Envelope-to: bug-bash@gnu.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Icedove/52.7.0 Content-Language: en-GB X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 93.95.224.70 X-BeenThere: bug-bash@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Bug reports for the GNU Bourne Again SHell List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com gnu.bash.bug:14094 This is a multi-part message in MIME format. --------------86C986AD6518CAC2FB07FB48 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit There should be a space between ')' and 'the'. I send here the patch to fix it. --------------86C986AD6518CAC2FB07FB48 Content-Type: text/x-patch; name="docfix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="docfix.patch" >From 22d34573983300a3e3d6c131bb4219b4fdf25051 Mon Sep 17 00:00:00 2001 From: Jorge Maldonado Ventura Date: Tue, 8 May 2018 12:33:38 +0200 Subject: [PATCH] fix --- doc/bashref.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/bashref.texi b/doc/bashref.texi index 04da396..7dc4073 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -1021,7 +1021,7 @@ If the @code{nocasematch} shell option is enabled, the match is performed without regard to the case of alphabetic characters. The return value is 0 if the string matches (@samp{==}) or does not -match (@samp{!=})the pattern, and 1 otherwise. +match (@samp{!=}) the pattern, and 1 otherwise. Any part of the pattern may be quoted to force the quoted portion to be matched as a string. -- 2.7.4 --------------86C986AD6518CAC2FB07FB48--