Skip to content

Commit 9f47bb2

Browse files
committed
docs: correct wording in container __str__ docs
1 parent 0151932 commit 9f47bb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hl7/containers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def create_trailer(self):
206206
return self.create_segment([self.create_field(["FTS"])])
207207

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

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

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

0 commit comments

Comments
 (0)