Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions hl7/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def parse_hl7(line, encoding="utf-8", factory=Factory):
messages or batches respectively.

A custom :py:class:`hl7.Factory` subclass can be passed in to be used when
constructing the message/batch/file and it's components.
constructing the message/batch/file and its components.

.. note::

Expand Down Expand Up @@ -61,7 +61,7 @@ def parse(lines, encoding="utf-8", factory=Factory):
indexed access to the data elements.

A custom :py:class:`hl7.Factory` subclass can be passed in to be used when
constructing the message and it's components.
constructing the message and its components.

.. note::

Expand Down Expand Up @@ -129,7 +129,7 @@ def parse_batch(lines, encoding="utf-8", factory=Factory):
that allows indexed access to the messages.

A custom :py:class:`hl7.Factory` subclass can be passed in to be used when
constructing the batch and it's components.
constructing the batch and its components.

.. note::

Expand Down Expand Up @@ -212,7 +212,7 @@ def parse_file(lines, encoding="utf-8", factory=Factory): # noqa: C901
indexed access to the batches.

A custom :py:class:`hl7.Factory` subclass can be passed in to be used when
constructing the file and it's components.
constructing the file and its components.

.. note::

Expand Down
Loading