@@ -236,17 +236,17 @@ YAML::PP is a modern, modular YAML processor.
236
236
It aims to support C<YAML 1.2 > and C<YAML 1.1 > . See L<http://yaml.org/> .
237
237
238
238
YAML is a serialization language. The YAML input is called "YAML Stream".
239
- A stream consists of one or more "Documents", seperated by a line with a
239
+ A stream consists of one or more "Documents", separated by a line with a
240
240
document start marker C<--- > . A document optionally ends with the document
241
241
end marker C<... > .
242
242
243
- This allows to process continuous streams additionally to a fixed input
243
+ This allows one to process continuous streams additionally to a fixed input
244
244
file or string.
245
245
246
246
The YAML::PP frontend will currently load all documents, and return only
247
247
the last if called with scalar context.
248
248
249
- The YAML backend is implemented in a modular way that allows to add
249
+ The YAML backend is implemented in a modular way that allows one to add
250
250
custom handling of YAML tags, perl objects and data types. The inner API
251
251
is not yet stable. Suggestions welcome.
252
252
@@ -377,7 +377,7 @@ Still TODO:
377
377
---
378
378
[ a, b, c ]: value
379
379
380
- =item Implicit mapping in flow syle sequences
380
+ =item Implicit mapping in flow style sequences
381
381
382
382
---
383
383
[ a, b, c: d ]
@@ -784,7 +784,7 @@ These projects are a big help for any developer. So I got the idea
784
784
to write my own parser and started on New Year's Day 2017.
785
785
Without the test suite and the editor I would have never started this.
786
786
787
- I also started another YAML Test project which allows to get a quick
787
+ I also started another YAML Test project which allows one to get a quick
788
788
overview of which frameworks support which YAML features:
789
789
790
790
=over 4
@@ -798,13 +798,13 @@ overview of which frameworks support which YAML features:
798
798
L<https://github.com/yaml/yaml-test-suite>
799
799
800
800
It contains about 230 test cases and expected parsing events and more.
801
- There will be more tests coming. This test suite allows to write parsers
801
+ There will be more tests coming. This test suite allows you to write parsers
802
802
without turning the examples from the Specification into tests yourself.
803
803
Also the examples aren't completely covering all cases - the test suite
804
804
aims to do that.
805
805
806
- The suite contains .tml files, and in a seperate 'data' branch you will
807
- find the content in seperate files, if you can't or don't want to
806
+ The suite contains .tml files, and in a separate 'data' branch you will
807
+ find the content in separate files, if you can't or don't want to
808
808
use TestML.
809
809
810
810
Thanks also to Felix Krause, who is writing a YAML parser in Nim.
0 commit comments