From a1a85ccf8b1c73401e8feeeae164a9f0e9993295 Mon Sep 17 00:00:00 2001 From: faizan431517 <64598191+faizan431517@users.noreply.github.com> Date: Sat, 2 May 2020 03:16:42 -0700 Subject: [PATCH] Updated SC1088 (markdown) --- SC1088.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SC1088.md b/SC1088.md index 2c812b3..f02e363 100644 --- a/SC1088.md +++ b/SC1088.md @@ -2,15 +2,15 @@ ### Problematic code: -```sh -grep ^(.*)\1$ file + +grep '^(.*)\1$' file ``` or -```sh -var = myfunction(value) -``` + +var=$(myfunction value) + ### Correct code: