From bd60aa8b5eb741c2fcde1ce150f803464b668f03 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Mon, 4 Nov 2019 20:44:38 -0800 Subject: [PATCH] wasmtime-wast: Fix copy-pasted doc comment (#453) wasmtime-wast's main module had the same comment as wasmtime-jit's main module; fix it to have its own doc comment. --- wasmtime-wast/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasmtime-wast/src/lib.rs b/wasmtime-wast/src/lib.rs index b8831c02c7..182be4a1d0 100644 --- a/wasmtime-wast/src/lib.rs +++ b/wasmtime-wast/src/lib.rs @@ -1,4 +1,4 @@ -//! JIT-style runtime for WebAssembly using Cranelift. +//! Implementation of the WAST text format for wasmtime. #![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)] #![warn(unused_import_braces)]