aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAugust Skare <post@augustskare.no>2018-11-07 16:10:25 +0800
committerAugust Skare <post@augustskare.no>2018-11-07 16:10:25 +0800
commit2dfca078fdf3cddb551fb33f913aade1a2e902e1 (patch)
treeb97b3c1065787a85f30e85141a6b4c8c0fbac441
parent9006e8fced685c9a6077d68691223005de2a1cbd (diff)
downloaddexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.gz
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.bz2
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.lz
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.xz
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.tar.zst
dexon-sol-tools-2dfca078fdf3cddb551fb33f913aade1a2e902e1.zip
copy changes
-rw-r--r--packages/dev-tools-pages/ts/components/Code.tsx2
-rw-r--r--packages/dev-tools-pages/ts/components/Compiler.tsx12
-rw-r--r--packages/dev-tools-pages/ts/context/cov.tsx2
-rw-r--r--packages/dev-tools-pages/ts/pages/Profiler.tsx2
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