@@ -217,8 +217,9 @@ are supported:
217217
218218#####TextBundleWriter
219219
220- Writes a resource bundle to a .txt file. These text files can be converted to
221- binary .res files using the` BundleCompiler ` class.
220+ Writes an array or an array-like object to a plain text resource bundle. The
221+ resulting .txt file can be converted to a binary .res file with the
222+ ` BundleCompiler ` class.
222223
223224use Symfony\Component\Intl\ResourceBundle\Writer\TextBundleWriter;
224225use Symfony\Component\Intl\ResourceBundle\Compiler\BundleCompiler;
@@ -237,11 +238,11 @@ binary .res files using the `BundleCompiler` class.
237238
238239The command "genrb" must be available for the` BundleCompiler ` to work. If the
239240command is located in a non-standard location, you can pass its path to the
240- constructor of the ` BundleCompiler ` .
241+ ` BundleCompiler ` constructor .
241242
242243#####PhpBundleWriter
243244
244- Writesa resource bundle to a .phpfile .
245+ Writesan array or an array-like object to a .phpresource bundle .
245246
246247use Symfony\Component\Intl\ResourceBundle\Writer\PhpBundleWriter;
247248