Use three instead of two dots in 2006 message

This commit is contained in:
Vidar Holen 2018-07-26 19:59:42 -07:00
parent d8a32da07f
commit 51e0c1be62
1 changed files with 1 additions and 1 deletions

View File

@ -1324,7 +1324,7 @@ prop_checkBackticks1 = verify checkBackticks "echo `foo`"
prop_checkBackticks2 = verifyNot checkBackticks "echo $(foo)"
prop_checkBackticks3 = verifyNot checkBackticks "echo `#inlined comment` foo"
checkBackticks _ (T_Backticked id list) | not (null list) =
style id 2006 "Use $(..) instead of legacy `..`."
style id 2006 "Use $(...) notation instead of legacy backticked `...`."
checkBackticks _ _ = return ()
prop_checkIndirectExpansion1 = verify checkIndirectExpansion "${foo$n}"