Skip to content

Commit 44f6214

Browse files
Fix typo
1 parent 21b0777 commit 44f6214

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/egglog/bindings.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ __all__ = [
4545
"Pop",
4646
"PrintAllFunctionsSize",
4747
"PrintFunction",
48-
"PrintFunctionOuput",
48+
"PrintFunctionOutput",
4949
"PrintFunctionSize",
5050
"PrintOverallStatistics",
5151
"PrintSize",
@@ -431,7 +431,7 @@ class RunScheduleOutput:
431431
def __init__(self, report: RunReport) -> None: ...
432432

433433
@final
434-
class PrintFunctionOuput:
434+
class PrintFunctionOutput:
435435
function: Function
436436
termdag: TermDag
437437
terms: list[tuple[_Term, _Term]]
@@ -452,7 +452,7 @@ _CommandOutput: TypeAlias = (
452452
| ExtractBest
453453
| OverallStatistics
454454
| RunScheduleOutput
455-
| PrintFunctionOuput
455+
| PrintFunctionOutput
456456
| UserDefinedOutput
457457
)
458458

src/conversions.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,14 +359,14 @@ convert_enums!(
359359
RunScheduleOutput(report: RunReport)
360360
b -> egglog::CommandOutput::RunSchedule(b.report.clone().into()),
361361
egglog::CommandOutput::RunSchedule(report) => RunScheduleOutput {report: report.into()};
362-
PrintFunctionOuput(function: Function, termdag: TermDag, terms: Vec<(Term, Term)>, mode: PrintFunctionMode)
362+
PrintFunctionOutput(function: Function, termdag: TermDag, terms: Vec<(Term, Term)>, mode: PrintFunctionMode)
363363
v -> egglog::CommandOutput::PrintFunction(
364364
v.function.0.clone(),
365365
(&v.termdag).into(),
366366
v.terms.iter().map(|(l, r)| (l.into(), r.into())).collect(),
367367
v.mode.clone().into()
368368
),
369-
egglog::CommandOutput::PrintFunction(function, termdag, terms, mode) => PrintFunctionOuput {
369+
egglog::CommandOutput::PrintFunction(function, termdag, terms, mode) => PrintFunctionOutput {
370370
function: Function(function.clone()),
371371
termdag: termdag.into(),
372372
terms: terms.iter().map(|(l, r)| (l.into(), r.into())).collect(),

0 commit comments

Comments
 (0)