Skip to content

Commit 9b75d99

Browse files
authored
fix(tesseract): Fix typo in interval (#9680)
1 parent bb6d655 commit 9b75d99

File tree

1 file changed

+1
-1
lines changed
  • rust/cubesqlplanner/cubesqlplanner/src/planner/time_dimension

1 file changed

+1
-1
lines changed

rust/cubesqlplanner/cubesqlplanner/src/planner/time_dimension/sql_interval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl SqlInterval {
6464
res.push(format!("{} year", self.year));
6565
}
6666
if self.month != 0 {
67-
res.push(format!("{} montH", self.month));
67+
res.push(format!("{} month", self.month));
6868
}
6969
if self.week != 0 {
7070
res.push(format!("{} week", self.week));

0 commit comments

Comments
 (0)