Skip to content

Commit 1103666

Browse files
committed
refactor(architecture): remove instruction help field
1 parent 4dff504 commit 1103666

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/architecture.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,6 @@ pub struct Instruction<'a> {
238238
// Can't be a reference because there might be escape sequences, which require
239239
// modifying the data on deserialization
240240
pub definition: String,
241-
/// Help information of the instruction
242-
pub help: &'a str,
243241
/// Properties of the instruction
244242
pub properties: Option<Vec<InstructionProperties>>,
245243
}
@@ -374,8 +372,6 @@ pub struct Pseudoinstruction<'a> {
374372
// Can't be a reference because there might be escape sequences, which require
375373
// modifying the data on deserialization
376374
pub definition: String,
377-
/// Help information of the instruction
378-
pub help: &'a str,
379375
/// Properties of the instruction
380376
pub properties: Option<Vec<InstructionProperties>>,
381377
}

0 commit comments

Comments
 (0)