From 2dfca078fdf3cddb551fb33f913aade1a2e902e1 Mon Sep 17 00:00:00 2001 From: August Skare Date: Wed, 7 Nov 2018 09:10:25 +0100 Subject: copy changes --- packages/dev-tools-pages/ts/components/Code.tsx | 2 -- packages/dev-tools-pages/ts/components/Compiler.tsx | 12 ++++++------ packages/dev-tools-pages/ts/context/cov.tsx | 2 +- packages/dev-tools-pages/ts/pages/Profiler.tsx | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) (limited to 'packages/dev-tools-pages/ts') diff --git a/packages/dev-tools-pages/ts/components/Code.tsx b/packages/dev-tools-pages/ts/components/Code.tsx index 862e04ebf..84ce43f84 100644 --- a/packages/dev-tools-pages/ts/components/Code.tsx +++ b/packages/dev-tools-pages/ts/components/Code.tsx @@ -179,8 +179,6 @@ class Code extends React.Component { Code = StyledCodeDiff as any; } - /* console.log(hlCode); */ - return ( 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: ( - It can compile an entire project instead of only individual .sol files + Compiles an entire project instead of only individual .sol files. ), }, { 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!).', }, ]; diff --git a/packages/dev-tools-pages/ts/context/cov.tsx b/packages/dev-tools-pages/ts/context/cov.tsx index 47f115582..f2f4d5dad 100644 --- a/packages/dev-tools-pages/ts/context/cov.tsx +++ b/packages/dev-tools-pages/ts/context/cov.tsx @@ -4,7 +4,7 @@ export default { title: 'sol-cov', name: 'cov', subtitle: 'Solidity code coverage', - tagline: "Don't get caught with your pants down", + tagline: 'Measure Solidity code coverage', icon: Icon, colors: { main: '#BB9200', diff --git a/packages/dev-tools-pages/ts/pages/Profiler.tsx b/packages/dev-tools-pages/ts/pages/Profiler.tsx index d45721937..1021e43a3 100644 --- a/packages/dev-tools-pages/ts/pages/Profiler.tsx +++ b/packages/dev-tools-pages/ts/pages/Profiler.tsx @@ -16,7 +16,7 @@ function Profiler() { return ( - +

Sol-profiler gathers line-by-line gas usage for any transaction submitted through your provider. This will help you find unexpected inefficiencies in parts of your smart contract, and take a -- cgit v1.2.3