From 0f478f96ccb704ad48905495785a031c76734a34 Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Sun, 29 Jun 2014 16:35:16 +0800 Subject: [PATCH] Update features.md --- doc/features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/features.md b/doc/features.md index d8e2b1a..7a52030 100644 --- a/doc/features.md +++ b/doc/features.md @@ -27,7 +27,7 @@ * Support UTF-8, UTF-16, UTF-32 encodings, including little endian and big endian. * These encodings are used in input/output streams and in-memory representation. -* Support Automatic detection of encodings in input stream. +* Support automatic detection of encodings in input stream. * Support transcoding between encodings internally. * For example, you can read a UTF-8 file and let RapidJSON transcode the JSON strings into UTF-16 in the DOM. * Support encoding validation internally. @@ -75,5 +75,5 @@ * Support fast default allocator. * A stack-based allocator (allocate sequentially, prohibit to free individual allocations, suitable for parsing). * User can provide a pre-allocated buffer. (Possible to parse a number of JSONs without any CRT allocation) -* Standard CRT(C-runtime) allocator. +* Support standard CRT(C-runtime) allocator. * Support custom allocators.