Fix CS_ERR_X86_MASM doc typo (#1455)

This commit is contained in:
Travis Finkenauer 2019-03-31 22:52:47 -04:00 committed by Nguyen Anh Quynh
parent 5a0c7d7e60
commit 7f7cda6429
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ typedef enum cs_err {
CS_ERR_SKIPDATA, ///< Access irrelevant data for "data" instruction in SKIPDATA mode
CS_ERR_X86_ATT, ///< X86 AT&T syntax is unsupported (opt-out at compile time)
CS_ERR_X86_INTEL, ///< X86 Intel syntax is unsupported (opt-out at compile time)
CS_ERR_X86_MASM, ///< X86 Intel syntax is unsupported (opt-out at compile time)
CS_ERR_X86_MASM, ///< X86 Masm syntax is unsupported (opt-out at compile time)
} cs_err;
/**