Skip to content

Commit f3261de

Browse files
anbec12ErichSuter
authored andcommitted
MAINT: Fix typos in comments and logger output
1 parent 5d19001 commit f3261de

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/fmu/tools/domainconversion/dconvert.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def _resample_check_surfaces(
184184
def _ensure_consistency(
185185
slist: list[xtgeo.RegularSurface],
186186
) -> list[xtgeo.RegularSurface]:
187-
"""Ensure consistensy and check order for depth or time surfaces"""
187+
"""Ensure consistency and check order for depth or time surfaces."""
188188
for inum in range(1, len(slist)):
189189
s0 = slist[inum - 1]
190190
s1 = slist[inum]
@@ -283,7 +283,7 @@ def _velo_maps_average(self) -> None:
283283

284284
vel.insert(0, vel[0])
285285
self._v_surfaces = vel
286-
_logger.debug("Create velocity maps for average velocities from MSL... DONE")
286+
_logger.debug("Create velocity maps for average velocities from MSL... DONE")
287287

288288
def _slow_maps_average(self) -> None:
289289
"""Create average slowness from MSL to surface N"""
@@ -310,7 +310,7 @@ def _slow_maps_average(self) -> None:
310310

311311
slow.insert(0, slow[0])
312312
self._s_surfaces = slow
313-
_logger.debug("Create slowness maps for average from MSL... DONE")
313+
_logger.debug("Create slowness maps for average from MSL... DONE")
314314

315315
def _check_surfaces_are_inside_area(
316316
self, insurfs: list[xtgeo.RegularSurface]
@@ -545,7 +545,7 @@ def _derive_result_cube_design(
545545
zmin_estimated = compare_surfs[1].values.min()
546546
zmax_estimated = compare_surfs[-1].values.max()
547547
_logger.debug(
548-
"Zmin and zmax for relevant surfaces is %s %s (time2deph: %s)",
548+
"Zmin and zmax for relevant surfaces is %s %s (time2depth: %s)",
549549
zmin_estimated,
550550
zmax_estimated,
551551
time2depth,

0 commit comments

Comments
 (0)