From: Joel Rosdahl Date: Tue, 5 Oct 2010 20:07:09 +0000 (+0200) Subject: Fix spelling and grammar in HACKING.txt X-Git-Tag: v3.2~308 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7aefc5d24ae5988e989d8ad5f715e36df484a77b;p=thirdparty%2Fccache.git Fix spelling and grammar in HACKING.txt --- diff --git a/HACKING.txt b/HACKING.txt index e0fbe7685..43ff89e9c 100644 --- a/HACKING.txt +++ b/HACKING.txt @@ -14,14 +14,14 @@ Code formatting * If possible, keep lines at most 80 character wide for a 2 character tab width. * Use only lowercase names for functions and variables. -* Use only uppercase names for enum items and (with some exceptins) macros. +* Use only uppercase names for enum items and (with some exceptions) macros. * Don't use typedefs for structs and enums. Idioms ------ * Use NULL to initialize null pointers. -* Don't use NULL to compare null pointers. +* Don't use NULL when comparing pointers. * Use format(), x_malloc() and friends instead of checking for memory allocation failure explicitly. * Use str_eq() instead of strcmp() when testing for string (in)equality.