]> git.kaiwu.me - klib.git/commitdiff
fixed typo
authorHeng Li <lh3@me.com>
Mon, 28 Jan 2013 02:17:37 +0000 (21:17 -0500)
committerHeng Li <lh3@me.com>
Mon, 28 Jan 2013 02:17:37 +0000 (21:17 -0500)
README.md

index 7210bca5f78cdd4e78ef80281f1212ca496ea2e3..200f2f6d13235a7a0ec5e3a15b94fde6b9464316 100644 (file)
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ For the implementation of generic [containers][21], klib extensively uses C
 marcos. To use these data structures, we usually need to instantiate methods by
 expanding a long macro. This makes the source code look unusual or even ugly
 and adds difficulty to debugging. Unfortunately, for efficient generic
-programming in C where there is [template][22] in C++, using marcos is the only
+programming in C where there is no C++-like [template][22], using marcos is the only
 solution. Only with marcos, we can write a generic container which, once
 instantiated, compete with a type-specific container in efficiency. Some
 generic libraries in C, such as [Glib][23], use the `void*` type to implement