summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--C-STYLE.md4
-rw-r--r--RUBY-STYLE2
2 files changed, 4 insertions, 2 deletions
diff --git a/C-STYLE.md b/C-STYLE.md
index b3e58dc..cde86cc 100644
--- a/C-STYLE.md
+++ b/C-STYLE.md
@@ -1,4 +1,4 @@
-# Christian Neukirchen's C Style Guide
+# Leah Neukirchen's C Style Guide
 
 You may not like all rules presented here, but they work very well for
 me and have helped producing high quality code.  Everyone is free to
@@ -142,6 +142,8 @@ but merely how to format it.
 
 * Use `int` variables to store boolean values in general.
 
+* Avoid bit fields unless you absolutely need to save space.
+
 * Avoid forward declarations unless indispensable.
   Let `main` be the last function in code.
 
diff --git a/RUBY-STYLE b/RUBY-STYLE
index 82b5a64..69e9272 100644
--- a/RUBY-STYLE
+++ b/RUBY-STYLE
@@ -1,4 +1,4 @@
-= Christian Neukirchen's Ruby Style Guide
+= Leah Neukirchen's Ruby Style Guide
 
 You may not like all rules presented here, but they work very well for
 me and have helped producing high quality code.  Everyone is free to