Skip to content

Commit

Permalink
Minor documentation cleanup 🪸
Browse files Browse the repository at this point in the history
  • Loading branch information
todofixthis committed Oct 6, 2023
1 parent d388e11 commit 49a8945
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ data validation and processing pipelines, including:

And much more!

The output from one filter can be "piped" into the input of another, enabling
you to "chain" filters together to quickly and easily create complex data
The output from one filter can be piped into the input of another, enabling you
to chain filters together to quickly and easily create complex data schemas and
pipelines.


Expand Down Expand Up @@ -64,7 +64,7 @@ Parse a JSON string and check that it has correct structure:
f.FilterMapper(
{
'birthday': f.Date,
'gender': f.CaseFold | f.Choice(choices={'m', 'f', 'x'}),
'gender': f.CaseFold | f.Choice(choices={'f', 'm', 'n'}),
'utcOffset':
f.Decimal |
Expand Down

0 comments on commit 49a8945

Please sign in to comment.