ZSH uses dash instead of underscore to separate words in function identifiers.

sorin-ionescu 2011-06-28 14:06:19 -07:00
parent ccb7fd5c2b
commit c7670fb339

@ -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: Private or utility functions should be prefixed with an underscore:
function _helper_util() { function _helper-util() {
... ...
} }