aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorpranomostro <pranomestro@gmail.com>2018-09-15 10:05:59 +0200
committerMattias Andrée <maandree@kth.se>2018-09-15 10:22:18 +0200
commita783f74725cda3646bdf35decd8d42bfc7131e69 (patch)
treee462747d6045ab97d4e9698489f89614b512a326 /README
parentAdd TODO (diff)
downloadlibsimple-a783f74725cda3646bdf35decd8d42bfc7131e69.tar.gz
libsimple-a783f74725cda3646bdf35decd8d42bfc7131e69.tar.bz2
libsimple-a783f74725cda3646bdf35decd8d42bfc7131e69.tar.xz
Fix a typo.
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 2866b75..369307b 100644
--- a/README
+++ b/README
@@ -52,7 +52,7 @@ The following macros are defined, unless already defined:
FREE(PTR)
(free(PTR), (PTR) = NULL, 0)
- Ensures that a pointer is not freed twiced.
+ Ensures that a pointer is not freed twice.
CLOSE(FD)
((FD) >= 0 ? (close(FD), (FD) = -1, 0) : 0)