diff options
author | Fabio Berger <me@fabioberger.com> | 2018-04-11 16:36:01 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-04-11 16:36:01 +0800 |
commit | 1e13e927d022ff9b5eb4297430e13c2a79fa4508 (patch) | |
tree | 8faa08f977e9c1f1dd2f30cc102fe2e83a288dcb /packages/react-docs/src/components | |
parent | 3c0fa0b7e6cc861d6357360c974d2b5720f7c4b7 (diff) | |
download | dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar.gz dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar.bz2 dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar.lz dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar.xz dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.tar.zst dexon-sol-tools-1e13e927d022ff9b5eb4297430e13c2a79fa4508.zip |
Add missing space in property declaration
Diffstat (limited to 'packages/react-docs/src/components')
-rw-r--r-- | packages/react-docs/src/components/documentation.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/react-docs/src/components/documentation.tsx b/packages/react-docs/src/components/documentation.tsx index 14fe175cf..800892dc8 100644 --- a/packages/react-docs/src/components/documentation.tsx +++ b/packages/react-docs/src/components/documentation.tsx @@ -337,7 +337,7 @@ export class Documentation extends React.Component<DocumentationProps, Documenta return ( <div key={`property-${property.name}-${property.type.name}`} className="pb3"> <code className={`hljs ${constants.TYPE_TO_SYNTAX[this.props.docsInfo.type]}`}> - {property.name}: + {property.name}:{' '} <Type type={property.type} sectionName={sectionName} docsInfo={this.props.docsInfo} /> </code> {property.source && ( |