Browse Source

token: cbindgen doing its thing...

Trent Nelson 4 years ago
parent
commit
d9c86ea5ae
1 changed files with 6 additions and 6 deletions
  1. 6 6
      program/inc/token.h

+ 6 - 6
program/inc/token.h

@@ -8,14 +8,14 @@
 #include <stdlib.h>
 
 /**
- * Maximum number of multisignature signers (max N)
+ * Minimum number of multisignature signers (min N)
  */
-#define Token_MAX_SIGNERS 11
+#define Token_MIN_SIGNERS 1
 
 /**
- * Minimum number of multisignature signers (min N)
+ * Maximum number of multisignature signers (max N)
  */
-#define Token_MIN_SIGNERS 1
+#define Token_MAX_SIGNERS 11
 
 /**
  * Account state.
@@ -263,9 +263,9 @@ typedef enum Token_TokenInstruction_Tag {
      *
      *   * Multisignature owner/delegate
      *   0. `[writable]` The account to burn from.
-     *   1. '[writable]' The token mint.
+     *   1. `[writable]` The token mint.
      *   2. `[]` The account's multisignature owner/delegate.
-     *   3. ..3+M '[signer]' M signer accounts.
+     *   3. ..3+M `[signer]` M signer accounts.
      */
     Token_TokenInstruction_Burn,
     /**