From 99e765ff3491e0272590f4b23e7a37e30fd884ba Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Wed, 7 Nov 2012 18:27:12 -0800 Subject: [PATCH] Minor text modifications --- ShellCheck/Analytics.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShellCheck/Analytics.hs b/ShellCheck/Analytics.hs index af94588..5476eea 100644 --- a/ShellCheck/Analytics.hs +++ b/ShellCheck/Analytics.hs @@ -219,10 +219,10 @@ data VariableState = Dead Id String | Alive deriving (Show, Eq) leadType t = case t of - T_DollarExpansion _ _ -> SubshellScope "$(..)" + T_DollarExpansion _ _ -> SubshellScope "$(..) expansion" T_Backgrounded _ _ -> SubshellScope "backgrounding &" T_Subshell _ _ -> SubshellScope "(..) group" - -- This considers the pipeline one subshell. Consider fixing. + -- This considers the whole pipeline one subshell. Consider fixing. T_Pipeline _ (_:_:[]) -> SubshellScope "pipeline" _ -> NoneScope