From ddcef2137e1eedec7810c654b11e46760231082d Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Mon, 28 Sep 2020 04:47:53 +0200 Subject: [PATCH] NEWS: fix typo (re: bd283959) --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 68c8d9c8e..9cf77c610 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ Any uppercase BUG_* names are modernish shell bug IDs. 2020-09-27: -- The shell's lexical analisys of a 'case' statement within a do...done block +- The shell's lexical analysis of a 'case' statement within a do...done block within a command substitution of the form $(...) has been fixed so that code like the following no longer throws a spurious syntax error: x=$(for i in 1; do case $i in word) true;; esac; done)