diff options
-rw-r--r-- | packages/dev-tools-pages/ts/components/Code.tsx | 2 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/components/Compiler.tsx | 12 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/cov.tsx | 2 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Profiler.tsx | 2 |
4 files changed, 8 insertions, 10 deletions
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<CodeProps, CodeState> { Code = StyledCodeDiff as any; } - /* console.log(hlCode); */ - return ( <Container> <Base language={language} diff={diff} light={light}> 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!).', }, ]; 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 ( <Base context={context}> <Intro> - <IntroLead title="Headline"> + <IntroLead title="Outline gas usage"> <p> 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 |