From 0b078e544ce2d259db6180d3a91c674b9314afaa Mon Sep 17 00:00:00 2001 From: Gregory Chamberlain Date: Tue, 25 Aug 2020 07:13:19 +0100 Subject: [PATCH] Fix unbalanced double quotes in comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1dd26d3..1fd0155 100644 --- a/README.md +++ b/README.md @@ -534,7 +534,7 @@ dirname() { # "${dir##*[!/]}": Remove all non-forward-slashes # from the start of the string, leaving us with only # the trailing slashes. - # "${dir%%"${}"}: Remove the result of the above + # "${dir%%"${}"}": Remove the result of the above # substitution (a string of forward slashes) from the # end of the original string. dir=${dir%%"${dir##*[!/]}"}