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
6 changes: 3 additions & 3 deletions hl7/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def create_trailer(self):
return self.create_segment([self.create_field(["FTS"])])

def __str__(self):
"""Join a the child batches into a single string, separated
"""Join the child batches into a single string, separated
by the self.separator. This method acts recursively, calling
the children's __unicode__ method. Thus ``unicode()`` is the
appropriate method for turning the python-hl7 representation of
Expand Down Expand Up @@ -297,7 +297,7 @@ def create_trailer(self):
return self.create_segment([self.create_field(["BTS"])])

def __str__(self):
"""Join a the child messages into a single string, separated
"""Join the child messages into a single string, separated
by the self.separator. This method acts recursively, calling
the children's __unicode__ method. Thus ``unicode()`` is the
appropriate method for turning the python-hl7 representation of
Expand Down Expand Up @@ -589,7 +589,7 @@ def create_ack(
return ack

def __str__(self):
"""Join a the child containers into a single string, separated
"""Join the child containers into a single string, separated
by the self.separator. This method acts recursively, calling
the children's __unicode__ method. Thus ``unicode()`` is the
appropriate method for turning the python-hl7 representation of
Expand Down
Loading