diff --git a/src/rules.rs b/src/rules.rs index f5a254c..0c94f18 100644 --- a/src/rules.rs +++ b/src/rules.rs @@ -62,7 +62,7 @@ impl ::std::str::FromStr for InstructionType { "reinterpret" => Ok(InstructionType::Reinterpretation), "unreachable" => Ok(InstructionType::Unreachable), "nop" => Ok(InstructionType::Nop), - "currrent_mem" => Ok(InstructionType::CurrentMemory), + "current_mem" => Ok(InstructionType::CurrentMemory), "grow_mem" => Ok(InstructionType::GrowMemory), _ => Err(UnknownInstruction), }