File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def __add__(self,
120120 # Convert other_field to a list if it is a Borehole
121121 if isinstance (other_field , Borehole ):
122122 other_field = [other_field ]
123- # Convert borehole to a list if it is a Borefield
123+ # Convert borefield to a list if it is a Borefield
124124 if isinstance (other_field , self .__class__ ):
125125 other_field = other_field .to_boreholes ()
126126 return Borefield .from_boreholes (field + other_field )
@@ -138,7 +138,7 @@ def __radd__(self,
138138 # Convert other_field to a list if it is a Borehole
139139 if isinstance (other_field , Borehole ):
140140 other_field = [other_field ]
141- # Convert borehole to a list if it is a Borefield
141+ # Convert borefield to a list if it is a Borefield
142142 if isinstance (other_field , self .__class__ ):
143143 other_field = other_field .to_boreholes ()
144144 return Borefield .from_boreholes (other_field + field )
You can’t perform that action at this time.
0 commit comments