Skip to content

Commit 9e36f95

Browse files
committed
fix typo
1 parent 24e10dd commit 9e36f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/core/snapshot/definition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ def merge_intervals(self, other: t.Union[Snapshot, SnapshotIntervals]) -> None:
901901
apply_effective_from = effective_from_ts > 0 and self.identifier != other.identifier
902902
for start, end in other.intervals:
903903
# If the effective_from is set, then intervals that come after it must come from
904-
# the current snapshost.
904+
# the current snapshots.
905905
if apply_effective_from and start < effective_from_ts:
906906
end = min(end, effective_from_ts)
907907
if not apply_effective_from or end <= effective_from_ts:

0 commit comments

Comments
 (0)