diff --git a/reference/yaconf/book.xml b/reference/yaconf/book.xml
index e3d5cdfeb1..95faae6e32 100644
--- a/reference/yaconf/book.xml
+++ b/reference/yaconf/book.xml
@@ -11,7 +11,7 @@
Yet Another Configurations Container
(Yaconf) is a configurations container,
- it parses INI files, and store the result
+ it parses INI files, and store the result
in PHP when PHP is started, the result lives with the
whole PHP lifecycle.
@@ -19,12 +19,12 @@
Yaconf stores all configurations as
interned string or immutable array, which means they are
not refcounted-able, thus when you retrieving configurations
- from yaconf, it could be considered as zero-copy, very fast.
+ from Yaconf, it could be considered as zero-copy, very fast.
Yaconf supports sections and sections
- inheritance in INI files. if PHP is built as non-ZTS build,
- Yaconf also supports automatically reloading after INI files
+ inheritance in INI files. If PHP is built as non-ZTS build,
+ Yaconf also supports automatically reloading after INI files
are changed.
@@ -34,17 +34,21 @@
INI example
@@ -59,8 +63,7 @@ hash.a=val
;SectionB inherits SectionA
[SectionB:SectionA]
-;override configuration key in SectionA
-key=new_val
+key=new_val ;override configuration key in SectionA
]]>