Skip to content

Commit

Permalink
Copy-pasta fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb authored Oct 11, 2023
1 parent 70c4e7b commit eb86fb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pykrige/uk3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ def execute(
"""

if self.verbose:
print("Executing Ordinary Kriging...\n")
print("Executing Universal Kriging...\n")

if style != "grid" and style != "masked" and style != "points":
raise ValueError("style argument must be 'grid', 'points', or 'masked'")
Expand Down Expand Up @@ -1132,7 +1132,7 @@ def execute(
else:
raise ValueError(
"Specified backend {} is not supported for "
"3D ordinary kriging.".format(backend)
"3D Universal kriging.".format(backend)
)

if style == "masked":
Expand Down

0 comments on commit eb86fb2

Please sign in to comment.