summaryrefslogtreecommitdiff
path: root/docs/codingstyle.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/codingstyle.html')
-rw-r--r--docs/codingstyle.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/codingstyle.html b/docs/codingstyle.html
index e5a92b0489..7e9f470a10 100644
--- a/docs/codingstyle.html
+++ b/docs/codingstyle.html
@@ -120,7 +120,7 @@ the opening brace goes on the next line by itself (see above.)
_mesa_foo_bar() - an internal non-static Mesa function
</pre>
-<li>Constants, macros and enumerant names are ALL_UPPERCASE, with _ between
+<li>Constants, macros and enum names are ALL_UPPERCASE, with _ between
words.
<li>Mesa usually uses camel case for local variables (Ex: "localVarname")
while gallium typically uses underscores (Ex: "local_var_name").