summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2013-06-27 10:53:29 -0700
committerArnavion <arnavion@gmail.com>2013-06-27 10:53:29 -0700
commit863dc2e8413c9c0fc6059fe5b16b2a269181e01e (patch)
treed7f1976fc9040efc35290e97ba9ecbf0bb305b7e
parent59b9ee34170998979e4917f5647f685aa0ba74c3 (diff)
docs: Typo.
-rw-r--r--share/doc/hacking.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/doc/hacking.md b/share/doc/hacking.md
index c5373405..bd36472e 100644
--- a/share/doc/hacking.md
+++ b/share/doc/hacking.md
@@ -24,7 +24,7 @@ routine (void)
 
 * When opening a file with Unix level functions (open, read/write, close)
   as opposed to the C level functions (fopen, fwrite/fread, fclose), use
-  the OFLAGS macro. This makes sure it'll work on Win32 aswell as Unix e.g.:
+  the OFLAGS macro. This makes sure it'll work on Win32 as well as Unix e.g.:
 
 	<pre>fh = open ("file", OFLAGS | O_RDONLY);</pre>