From e543fe855b942af448443f068ed94e1d57452c48 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Wed, 15 Sep 2021 17:53:36 -0700 Subject: [PATCH] Fix typescript syntax errors Remove unwanted `:` and fix the naming of the boolean type. --- docs/user/manual.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index fef3baaea2e..3cdfa8da228 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc @@ -585,10 +585,10 @@ interface Crate { target?: string; /// Environment variables, used for /// the `env!` macro - env: : { [key: string]: string; }, + env: { [key: string]: string; }, /// Whether the crate is a proc-macro crate. - is_proc_macro: bool; + is_proc_macro: boolean; /// For proc-macro crates, path to compiled /// proc-macro (.so file). proc_macro_dylib_path?: string;