diff options
Diffstat (limited to '')
-rw-r--r-- | dhall/src/syntax/text/printer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall/src/syntax/text/printer.rs b/dhall/src/syntax/text/printer.rs index 7b781ea..78942ed 100644 --- a/dhall/src/syntax/text/printer.rs +++ b/dhall/src/syntax/text/printer.rs @@ -16,8 +16,8 @@ enum PrintPhase { Primitive, } -// Wraps an Expr with a phase, so that phase selsction can be done -// separate from the actual printing +// Wraps an Expr with a phase, so that phase selection can be done separate from the actual +// printing. #[derive(Clone)] struct PhasedExpr<'a, E>(&'a Expr<E>, PrintPhase); |