diff options
author | August Skare <post@augustskare.no> | 2018-11-07 16:10:25 +0800 |
---|---|---|
committer | August Skare <post@augustskare.no> | 2018-11-07 16:10:25 +0800 |
commit | 2dfca078fdf3cddb551fb33f913aade1a2e902e1 (patch) | |
tree | b97b3c1065787a85f30e85141a6b4c8c0fbac441 /packages/dev-tools-pages/ts/components/Compiler.tsx | |
parent | 9006e8fced685c9a6077d68691223005de2a1cbd (diff) | |
download | dexon-0x-contracts-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.gz dexon-0x-contracts-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.zst dexon-0x-contracts-2dfca078fdf3cddb551fb33f913aade1a2e902e1.zip |
copy changes
Diffstat (limited to 'packages/dev-tools-pages/ts/components/Compiler.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/components/Compiler.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/dev-tools-pages/ts/components/Compiler.tsx b/packages/dev-tools-pages/ts/components/Compiler.tsx index 2ca340146..94d97511c 100644 --- a/packages/dev-tools-pages/ts/components/Compiler.tsx +++ b/packages/dev-tools-pages/ts/components/Compiler.tsx @@ -43,30 +43,30 @@ const Dd = styled.dd` const cards = [ { - title: 'Project-centric', + title: 'A Project-centric', body: ( <React.Fragment> - It can compile an entire project instead of only individual <InlineCode alt>.sol</InlineCode> files + Compiles an entire project instead of only individual <InlineCode alt>.sol</InlineCode> files. </React.Fragment> ), }, { title: 'Incremental builds', - body: 'It only recompiles your smart contracts after they have changed.', + body: 'Recompiles your smart contracts after they have changed', }, { title: 'Customizable artifacts', body: - 'It allows you to store only the required compiler output in your artifacts and have complete control over your bundle size.', + 'Stores only the required compiler output in your artifacts, so you can have complete control over your bundle size.', }, { title: 'Seamless', - body: 'It auto-fetches and caches the required compiler binaries.', + body: 'Fetches and caches the required compiler binaries.', }, { title: 'Versioning', body: - 'It compiles each contract with the version specified at the top of its file (it even supports version ranges!).', + 'Compiles each contract with the version specified at the top of its file (sol-compiler even supports version ranges!).', }, ]; |