From 4a87d61dbfcaddeafeebe5fd9546c5d9c6bc9ea2 Mon Sep 17 00:00:00 2001 From: Mikhail Alferov Date: Mon, 23 Sep 2024 12:04:13 +0300 Subject: [PATCH] yaconf/book.xml: Capitalize the first letter of the sentense + tags (#3750) * Capitalize the first letter of the sentence + tags * Make INI-conf more readable --- reference/yaconf/book.xml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) 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 ]]>