Removed repeated comments

This commit is contained in:
Syrus Akbary
2023-02-11 18:10:22 -08:00
parent 3d56b6bdd6
commit f72220e9d7
3 changed files with 0 additions and 24 deletions

View File

@@ -40,14 +40,6 @@ pub struct ModuleTypeHints {
pub exports: Vec<ExternType>,
}
/// A WebAssembly Module contains stateless WebAssembly
/// code that has already been compiled and can be instantiated
/// multiple times.
///
/// ## Cloning a module
///
/// Cloning a module is cheap: it does a shallow copy of the compiled
/// contents rather than a deep copy.
#[derive(Clone)]
pub struct Module {
module: WebAssembly::Module,