diff options
author | Nadrieril | 2019-12-20 19:15:10 +0000 |
---|---|---|
committer | Nadrieril | 2019-12-20 19:15:45 +0000 |
commit | 5c15f643236c5e14c2e8797b9dc507cffc93c43a (patch) | |
tree | c803496c6af9f7847d9bfb158dc6d78556002ebe /dhall/src/syntax/text | |
parent | 08593ae84ceae4d5f639d5868c08b99f1622795a (diff) |
Fix some comments
Diffstat (limited to 'dhall/src/syntax/text')
-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); |