From cecd4574a7264a7636f7201f8b930ea41f3ccfdb Mon Sep 17 00:00:00 2001 From: Kevin Butler Date: Sat, 23 Dec 2017 02:27:46 +0000 Subject: [PATCH] Remove single usage of struct field shorthands to compile on rust 1.16 --- src/skeptic/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/skeptic/lib.rs b/src/skeptic/lib.rs index 524bcd4..bf5be93 100644 --- a/src/skeptic/lib.rs +++ b/src/skeptic/lib.rs @@ -116,7 +116,7 @@ where root_dir: PathBuf::from(cargo_manifest_dir), out_file: out_file, target_triple: env::var("TARGET").expect("could not get target triple"), - docs, + docs: docs, }; run(&config);