aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-11 04:17:23 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-11 04:17:23 +0000
commit3e20c6f4176535bc4d2b4babe994c9219b1e5ad0 (patch)
tree348bbd60c50f924d46bc28bacdacc042aa9aeeac /doc
parente3c07a626bc3d1decac1cb094e55ec473bdedfd8 (diff)
fix minor typo in coding guidelines
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@42684 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/CODING-GUIDELINES2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/CODING-GUIDELINES b/doc/CODING-GUIDELINES
index 85f94fcc4..7d613b726 100644
--- a/doc/CODING-GUIDELINES
+++ b/doc/CODING-GUIDELINES
@@ -170,7 +170,7 @@ Instead, try to minimize the number of lines of code that need to be
indented, by only indenting the shortest case of the 'if'
statement, like so:
-if !(foo) {
+if (!foo) {
result = 0;
return;
}