Skip to content

Commit 5b5e174

Browse files
authored
Merge branch 'master' into typo
2 parents 5337478 + 5c80a9d commit 5b5e174

File tree

18 files changed

+117
-25
lines changed

18 files changed

+117
-25
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Everyone is welcome to contribute to Remix's codebase and please join our [Discord](https://discord.gg/mh9hFCKkEq).
3+
Everyone is welcome to contribute to Remix's codebase and please join our [Discord](https://discord.com/invite/nfv6ZYjAeP).
44

55
## Development
66
Remix libraries work closely with [Remix IDE](https://remix.ethereum.org). Each library has a README to explain its application.
@@ -72,7 +72,7 @@ import panelJson from './panel.json';
7272
import enJson from '../en';
7373

7474
// There may have some untranslated content. Always fill in the gaps with EN JSON.
75-
// No need for a defaultMessage prop when render a FormattedMessage component.
75+
// No need for a defaultMessage prop when rendering a FormattedMessage component.
7676
export default Object.assign({}, enJson, {
7777
...panelJson,
7878
})

apps/doc-viewer/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = composePlugins(withNx(), withReact(), (config) => {
2828
new webpack.DefinePlugin({})
2929
)
3030

31-
// souce-map loader
31+
// source-map loader
3232
config.module.rules.push({
3333
test: /\.js$/,
3434
use: ['source-map-loader'],

apps/learneth/src/pages/StepDetail/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function StepDetailPage() {
8585
<div className="errorloadingspacer"></div>
8686
<h1 className="pl-3 pr-3 pt-3 pb-1">{clonedStep.name}</h1>
8787
<button
88-
className="w-100nav-item rounded-0 nav-link btn btn-success test"
88+
className="w-100 nav-item rounded-0 nav-link btn btn-success test"
8989
onClick={() => {
9090
dispatch({
9191
type: 'remixide/displayFile',

apps/remix-dapp/src/locales/en/udapp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"udapp.contractCreation": "Contract Creation",
134134
"udapp.transactionFee": "Transaction is invalid. Max fee should not be less than Base fee",
135135
"udapp.title1": "Represents the part of the tx fee that goes to the miner.",
136-
"udapp.title2": "Represents the maximum amount of fee that you will pay for this transaction. The minimun needs to be set to base fee.",
136+
"udapp.title2": "Represents the maximum amount of fee that you will pay for this transaction. The minimum needs to be set to base fee.",
137137
"udapp.gasPrice": "Gas price",
138138
"udapp.gweiText": "visit {a} for current gas price info.",
139139
"udapp.maxTransactionFee": "Max transaction fee",

apps/remix-ide-e2e/src/tests/layout.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
.assert.containsText('.sidepanel h6[data-id="sidePanelSwapitTitle"]', 'SOLIDITY COMPILER')
2727
.waitForElementNotVisible('.pinned-panel h6[data-id="sidePanelSwapitTitle"]')
2828
},
29-
'Should pin a plugin while a another plugin is already pinned': function (browser: NightwatchBrowser) {
29+
'Should pin a plugin while an another plugin is already pinned': function (browser: NightwatchBrowser) {
3030
browser.waitForElementVisible('[data-id="movePluginToRight"]')
3131
.click('[data-id="movePluginToRight"]')
3232
.waitForElementVisible('[data-id="movePluginToLeft"]')

apps/remix-ide-e2e/src/tests/migrateFileSystem.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ module.exports = {
101101
browser.assert.equal(content, 'testing')
102102
})
103103
},
104-
'Should have a artifacts file with JSON test data #group1 #group3 #group5 #group7': function (browser: NightwatchBrowser) {
104+
'Should have an artifacts file with JSON test data #group1 #group3 #group5 #group7': function (browser: NightwatchBrowser) {
105105
browser.waitForElementVisible('*[data-id="remixIdeSidePanel"]', 5000)
106106
.click('*[data-id="treeViewLitreeViewItemtest_contracts/artifacts"]')
107107
.openFile('test_contracts/artifacts/Storage_metadata.json')
@@ -111,7 +111,7 @@ module.exports = {
111111
browser.assert.equal(metadata.test, 'data')
112112
})
113113
},
114-
'Should have a empty workspace #group1 #group3 #group5 #group7': function (browser: NightwatchBrowser) {
114+
'Should have an empty workspace #group1 #group3 #group5 #group7': function (browser: NightwatchBrowser) {
115115
browser.waitForElementVisible('*[data-id="remixIdeSidePanel"]', 5000)
116116
.switchWorkspace('emptyspace')
117117
},

apps/remix-ide-e2e/src/tests/specialFunctions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
before: function (browser: NightwatchBrowser, done: VoidFunction) {
88
// this test suite also contribute testing https://github.com/ethereum/remix/pull/1497 and https://github.com/ethereum/remix-ide/pull/2898
99
// quick explanation:
10-
// the goal of https://github.com/ethereum/remix-ide/pull/2898 is to keep track of all the compiled contracts an not only the last one.
10+
// the goal of https://github.com/ethereum/remix-ide/pull/2898 is to keep track of all the compiled contracts a not only the last one.
1111
// this introduce an issue: if 2 compiled contracts have the same name, the second one override the first which is not wanted.
1212
// fix's delivered by https://github.com/ethereum/remix/pull/1497: instead of getting contract by name,
1313
// which result in name clashing we process the whole contract object (which contain bytecode, deployedbytecode, ...)

apps/remix-ide-e2e/src/tests/terminal.test.ts

Lines changed: 69 additions & 0 deletions
Large diffs are not rendered by default.

libs/remix-ai-core/src/helpers/streamHandler.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ export const HandleStreamResponse = async (streamResponse,
5858
}
5959
}
6060

61-
export const UpdtateChatHistory = (userPromptprompt: string, AIAnswer: string) => {
62-
ChatHistory.pushHistory(userPromptprompt, AIAnswer)
63-
}
61+
export const UpdateChatHistory = (userPrompt: string, AIAnswer: string) => {
62+
ChatHistory.pushHistory(userPrompt, AIAnswer)
63+
}

libs/remix-analyzer/src/solidity-analyzer/modules/functionCallGraph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function buildLocalFuncCallGraphInternal (functions: FunctionHLAst[], nodeFilter
3333
* "functions": {
3434
* "KingOfTheEtherThrone.claimThrone(string memory)": { // function in KingOfEtherThrone
3535
* "node": {...}, // function node as defined in abstractAstView.js
36-
* "calls": { // list of full qualified function names which are called form this function
36+
* "calls": { // list of full qualified function names which are called from this function
3737
* }
3838
* }
3939
* }

0 commit comments

Comments
 (0)