[project @ 2004-08-13 13:04:50 by simonmar]
[ghc-hetmet.git] / ghc / docs / comm / rts-libs / coding-style.html
index 3b3be39..3916591 100644 (file)
@@ -108,7 +108,7 @@ POSIX-compliant to explicitly say so by having <code>#include
 
 <p><li> Some architectures have memory alignment constraints.  Others
 don't have any constraints but go faster if you align things.  These
-macros (from <tt>config.h</tt>) tell you which alignment to use
+macros (from <tt>ghcconfig.h</tt>) tell you which alignment to use
 
 <pre>
   /* minimum alignment of unsigned int */
@@ -165,7 +165,7 @@ Avoid conditional code like this:
   #endif
 </pre>
 
-Instead, add an appropriate test to the configure.in script and use
+Instead, add an appropriate test to the configure.ac script and use
 the result of that test instead. 
 
 <pre>