We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d2d4e commit 2899883Copy full SHA for 2899883
1 file changed
src/slang-nodes/AddressType.ts
@@ -17,6 +17,6 @@ export class AddressType extends SlangNode {
17
}
18
19
print(): Doc {
20
- return ['address', this.payableKeyword ? ' payable' : ''];
+ return `address${this.payableKeyword ? ' payable' : ''}`;
21
22
0 commit comments