From 52658ae7bb38fc9fb9e7bf513d4aefd04d62a17b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Mon, 13 Aug 2018 21:35:07 +0200 Subject: [PATCH] Fix double quotes according to https://github.com/robbyrussell/oh-my-zsh/issues/7061 --- Coding-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-style-guide.md b/Coding-style-guide.md index c7bb853..15793ff 100644 --- a/Coding-style-guide.md +++ b/Coding-style-guide.md @@ -435,7 +435,7 @@ var="`command \`command1\``" ##### _Good:_ ```shell -var="$(command \"$(command1)\")" +var="$(command "$(command1)")" ``` ### Eval