Change some comments after self-review

This commit is contained in:
Brian Carroll 2021-11-04 21:19:23 +00:00
parent 0d1946a782
commit 09f2ce327c
2 changed files with 5 additions and 3 deletions

View file

@ -475,9 +475,9 @@ impl<'a> CodeSection<'a> {
*******************************************************************/
pub enum DataMode {
/// A data segment that auto-initialises on instantiation
/// A data segment that auto-loads into memory on instantiation
Active { offset: ConstExpr },
/// A data segment that can be initialised with the `memory.init` instruction
/// A data segment that can be loaded with the `memory.init` instruction
Passive,
}