Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--docs/user/manual.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc
index fef3baaea2..3cdfa8da22 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;