Skip to content

Commit 9cdf77d

Browse files
committed
Fix typo
1 parent 0fd3efa commit 9cdf77d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygfunction/borefield.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)