Skip to content

Commit 28c128c

Browse files
committed
chore: fix some minor issues in the comments
Signed-off-by: dulanting <[email protected]>
1 parent 1d8e870 commit 28c128c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/api/side-chain/create-side-chain-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function createSideChainApi(provider) {
1212
const chainId = await web3.eth.getChainId();
1313

1414
if (!isSupportedSideChain(chainId)) {
15-
throw new Error(`Unsuported chain ID: ${chainId}`);
15+
throw new Error(`Unsupported chain ID: ${chainId}`);
1616
}
1717

1818
const api = xDai.createApi(xDaiParametersFactory(web3));

src/bootstrap/drizzle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function createDrizzle({ fallbackChainId, customProvider } = {}) {
123123
* such param in links to make sure the user will be redirected to the
124124
* right case on the right network.
125125
*
126-
* If the user e-mail client opens the link in a brower that is not
126+
* If the user e-mail client opens the link in a browser that is not
127127
* web3-ready, this will guarantee that the Drizzle fallback URL points
128128
* them to the right network.
129129
*

src/components/case-details-card.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ export default function CaseDetailsCard({ ID }) {
345345
}
346346
},
347347
(err) => {
348-
console.warn("Error while trying to derive the commited vote", err);
348+
console.warn("Error while trying to derive the committed vote", err);
349349
}
350350
);
351351
}

src/components/theme.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
@screen-xl : 1200px;
201201
@screen-xl-min : @screen-xl;
202202

203-
// Extra extra large screen / large descktop
203+
// Extra extra large screen / large desktop
204204
@screen-xxl : 1600px;
205205
@screen-xxl-min : @screen-xxl;
206206

0 commit comments

Comments
 (0)