correct an incorrect comment on default value of skipdata mnem: .db -> .byte. bug reported by Ben Nagy
diff --git a/include/capstone.h b/include/capstone.h
index e767995..845791d 100644
--- a/include/capstone.h
+++ b/include/capstone.h
@@ -141,7 +141,7 @@
 typedef struct cs_opt_skipdata {
 	// Capstone considers data to skip as special "instructions".
 	// User can specify the string for this instruction's "mnemonic" here.
-	// By default (if @mnemonic is NULL), Capstone use ".db".
+	// By default (if @mnemonic is NULL), Capstone use ".byte".
 	const char *mnemonic;
 
 	// User-defined callback function to be called when Capstone hits data.