From 9f47bb21d7d9f0a39a2c175e7119962204ce71f7 Mon Sep 17 00:00:00 2001 From: John Paulett Date: Sun, 8 Jun 2025 19:28:22 -0400 Subject: [PATCH] docs: correct wording in container __str__ docs --- hl7/containers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hl7/containers.py b/hl7/containers.py index 18df865..1b1626b 100644 --- a/hl7/containers.py +++ b/hl7/containers.py @@ -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 @@ -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 @@ -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