summaryrefslogtreecommitdiff
path: root/dhall/build.rs
diff options
context:
space:
mode:
authorNadrieril2020-03-20 17:45:00 +0000
committerNadrieril2020-03-20 18:24:17 +0000
commit694ff62501e534b7f93a1813abc12f73ec695fd8 (patch)
treef6adc2f73c04995ccb497cad50c47e1407e96e8e /dhall/build.rs
parent6f06ff5e6168f4a55b4dcc1175f89b1d67c98ab1 (diff)
Add coverage gathering with grcov
Diffstat (limited to 'dhall/build.rs')
-rw-r--r--dhall/build.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index fb3f9ee..19abcc4 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -333,7 +333,7 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/MergeHandlerFreeVar"
}),
output_type: Some(FileType::UI),
- ..default_feature.clone()
+ ..default_feature
},
];
@@ -450,7 +450,7 @@ fn convert_abnf_to_pest() -> std::io::Result<()> {
Ok(())
}
-// Generate pest parser manually becaue otherwise we'd need to modify something outside of
+// Generate pest parser manually because otherwise we'd need to modify something outside of
// OUT_DIR and that's forbidden by docs.rs.
fn generate_pest_parser() -> std::io::Result<()> {
let out_dir = env::var("OUT_DIR").unwrap();