From 6c30cf8f0068be9e4269b84307cc8ef4d8b90f96 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 6 Sep 2017 08:54:30 -0700 Subject: [PATCH] Enable deny(missing_docs) in the wasmstandalone library. --- lib/wasmstandalone/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/wasmstandalone/src/lib.rs b/lib/wasmstandalone/src/lib.rs index 5fc0c6d5b7..faa7f1d093 100644 --- a/lib/wasmstandalone/src/lib.rs +++ b/lib/wasmstandalone/src/lib.rs @@ -3,6 +3,8 @@ //! the translation the base addresses of regions of memory that will hold the globals, tables and //! linear memories. +#![deny(missing_docs)] + extern crate cretonne; extern crate cton_frontend; extern crate cton_wasm;