Skip to content

Commit 78a0506

Browse files
gregoaperlpunk
authored andcommitted
spelling/grammar fixes (#23)
1 parent a4ceaec commit 78a0506

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

lib/YAML/PP.pm

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,17 +236,17 @@ YAML::PP is a modern, modular YAML processor.
236236
It aims to support C<YAML 1.2> and C<YAML 1.1>. See L<http://yaml.org/>.
237237
238238
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
240240
document start marker C<--->. A document optionally ends with the document
241241
end marker C<...>.
242242
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
244244
file or string.
245245
246246
The YAML::PP frontend will currently load all documents, and return only
247247
the last if called with scalar context.
248248
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
250250
custom handling of YAML tags, perl objects and data types. The inner API
251251
is not yet stable. Suggestions welcome.
252252
@@ -377,7 +377,7 @@ Still TODO:
377377
---
378378
[ a, b, c ]: value
379379
380-
=item Implicit mapping in flow syle sequences
380+
=item Implicit mapping in flow style sequences
381381
382382
---
383383
[ a, b, c: d ]
@@ -784,7 +784,7 @@ These projects are a big help for any developer. So I got the idea
784784
to write my own parser and started on New Year's Day 2017.
785785
Without the test suite and the editor I would have never started this.
786786
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
788788
overview of which frameworks support which YAML features:
789789
790790
=over 4
@@ -798,13 +798,13 @@ overview of which frameworks support which YAML features:
798798
L<https://github.com/yaml/yaml-test-suite>
799799
800800
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
802802
without turning the examples from the Specification into tests yourself.
803803
Also the examples aren't completely covering all cases - the test suite
804804
aims to do that.
805805
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
808808
use TestML.
809809
810810
Thanks also to Felix Krause, who is writing a YAML parser in Nim.

lib/YAML/PP/Schema/Merge.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ order in the sequence. Keys in mapping nodes earlier in the sequence override
8282
keys specified in later mapping nodes."
8383
8484
The implementation of this in a generic way is not trivial, because we also
85-
have to handle duplicate keys, and YAML::PP allows to write your own
85+
have to handle duplicate keys, and YAML::PP allows you to write your own
8686
handler for processing mappings.
8787
8888
So the inner API of that is not stable at this point.

0 commit comments

Comments
 (0)