Use consistent formatting for module-level comments.

This commit is contained in:
Dan Gohman
2017-11-08 14:49:27 -08:00
parent e213c2654f
commit ced7a88ecc
8 changed files with 7 additions and 21 deletions

View File

@@ -1,3 +1,5 @@
//! "Dummy" environment for testing wasm translation.
use environ::{FuncEnvironment, GlobalValue, ModuleEnvironment};
use translation_utils::{Global, Memory, Table, GlobalIndex, TableIndex, SignatureIndex,
FunctionIndex, MemoryIndex};

View File

@@ -1,3 +1,5 @@
//! Support for configurable wasm translation.
mod spec;
mod dummy;

View File

@@ -1,4 +1,4 @@
///! Helper functions and structures for the translation.
//! Helper functions and structures for the translation.
use wasmparser;
use cretonne;
use std::u32;