diff --git a/ARCs/arc-0056.md b/ARCs/arc-0056.md index 49510804c..9113b7623 100644 --- a/ARCs/arc-0056.md +++ b/ARCs/arc-0056.md @@ -179,7 +179,7 @@ interface Method { * - local: The data key signifies the local state key to read the value from (for the sender) * - literal: the value is a literal and should be passed directly as the argument */ - source: 'box' | 'global' | 'local' | 'literal; + source: 'box' | 'global' | 'local' | 'literal'; }; }>; /** Information about the method's return value */ @@ -282,7 +282,7 @@ type AVMUint64 = "AVMUint64"; type AVMType = AVMBytes | AVMString | AVMUint64; /** Information about a single field in a struct */ -interface StructField = { +interface StructField { /** The name of the struct field */ name: string; /** The type of the struct field's value */