From c7670fb3394a1af7bb4e7940270216c7967f374d Mon Sep 17 00:00:00 2001 From: sorin-ionescu Date: Tue, 28 Jun 2011 14:06:19 -0700 Subject: [PATCH] ZSH uses dash instead of underscore to separate words in function identifiers. --- 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 45ea5c1..236928a 100644 --- a/Coding-style-guide.md +++ b/Coding-style-guide.md @@ -19,7 +19,7 @@ Braces should be on the same line as the function name: Private or utility functions should be prefixed with an underscore: - function _helper_util() { + function _helper-util() { ... }