From 027a926ae3c40b69c3f9540be537418648212b0a Mon Sep 17 00:00:00 2001 From: William Entriken Date: Thu, 12 May 2022 16:15:12 -0400 Subject: [PATCH] Fix spelling of GitHub --- CONTRIBUTING.md | 2 +- apps/remix-ide-e2e/src/tests/importFromGithub.test.ts | 6 +++--- apps/remix-ide-e2e/src/tests/solidityImport.test.ts | 10 +++++----- apps/remix-ide/docs/file_explorer.md | 4 ++-- apps/remix-ide/docs/locations.md | 2 +- apps/remix-ide/docs/remix_tutorials_github.md | 2 +- apps/remix-ide/team-best-practices.md | 4 ++-- libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx | 2 +- libs/remix-ui/settings/src/lib/constants.ts | 4 ++-- libs/remix-ui/settings/src/lib/remix-ui-settings.tsx | 2 +- libs/remix-url-resolver/README.md | 2 +- team-best-practices.md | 4 ++-- 12 files changed, 22 insertions(+), 22 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 45fe8a3680..623b4aea25 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,6 +12,6 @@ When you add a code in any library, please ensure you add related tests. You can Please conform to [standard](https://standardjs.com/) for code styles. ## Submitting Pull Request -Please follow Github's standard model of making changes & submitting pull request which is very well explained [here](https://guides.github.com/activities/forking/). Make sure your code works fine locally before submitting a pull request. +Please follow GitHub's standard model of making changes & submitting pull request which is very well explained [here](https://guides.github.com/activities/forking/). Make sure your code works fine locally before submitting a pull request. diff --git a/apps/remix-ide-e2e/src/tests/importFromGithub.test.ts b/apps/remix-ide-e2e/src/tests/importFromGithub.test.ts index b68299e79f..bf4936a2d4 100644 --- a/apps/remix-ide-e2e/src/tests/importFromGithub.test.ts +++ b/apps/remix-ide-e2e/src/tests/importFromGithub.test.ts @@ -23,7 +23,7 @@ module.exports = { .pause(1000) .click('button[data-id="landingPageImportFromGitHubButton"]') .waitForElementVisible('*[data-id="homeTabModalDialogModalTitle-react"]') - .assert.containsText('*[data-id="homeTabModalDialogModalTitle-react"]', 'Import from Github') + .assert.containsText('*[data-id="homeTabModalDialogModalTitle-react"]', 'Import from GitHub') .waitForElementVisible('*[data-id="homeTabModalDialogModalBody-react"]') .assert.containsText('*[data-id="homeTabModalDialogModalBody-react"]', 'Enter the github URL you would like to load.') .waitForElementVisible('input[data-id="homeTabModalDialogCustomPromptText"]') @@ -41,7 +41,7 @@ module.exports = { .assert.containsText('*[data-shared="tooltipPopup"] span', 'not found ' + testData.invalidURL) }, - 'Import From Github For Valid URL #group2': function (browser: NightwatchBrowser) { + 'Import From GitHub For Valid URL #group2': function (browser: NightwatchBrowser) { browser .waitForElementVisible('*[data-id="remixIdeIconPanel"]', 10000) .clickLaunchIcon('filePanel') @@ -62,7 +62,7 @@ module.exports = { browser.assert.ok(content.indexOf('library Roles {') !== -1, 'content does contain "library Roles {"') }) }, - 'Import JSON From Github For Valid URL #group2': function (browser: NightwatchBrowser) { + 'Import JSON From GitHub For Valid URL #group2': function (browser: NightwatchBrowser) { browser .click('div[title="home"]') .click('button[data-id="landingPageImportFromGitHubButton"]') diff --git a/apps/remix-ide-e2e/src/tests/solidityImport.test.ts b/apps/remix-ide-e2e/src/tests/solidityImport.test.ts index 2c0e8d4b99..3d2089fc8c 100644 --- a/apps/remix-ide-e2e/src/tests/solidityImport.test.ts +++ b/apps/remix-ide-e2e/src/tests/solidityImport.test.ts @@ -30,7 +30,7 @@ module.exports = { .assert.containsText('#compileTabView .error pre', 'not found Untitled11.sol') }, - 'Test Github Import - from master branch #group1': function (browser: NightwatchBrowser) { + 'Test GitHub Import - from master branch #group1': function (browser: NightwatchBrowser) { browser .setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js') // open-zeppelin moved to pragma ^0.8.0 (master branch) .addFile('Untitled4.sol', sources[3]['Untitled4.sol']) @@ -38,7 +38,7 @@ module.exports = { .verifyContracts(['test7', 'ERC20'], { wait: 10000 }) }, - 'Test Github Import - from other branch #group2': function (browser: NightwatchBrowser) { + 'Test GitHub Import - from other branch #group2': function (browser: NightwatchBrowser) { browser .setSolidityCompilerVersion('soljson-v0.5.0+commit.1d4f565a.js') // switch back to 0.5.0 : release-v2.3.0 branch is not solidity 0.6 compliant .addFile('Untitled5.sol', sources[4]['Untitled5.sol']) @@ -46,7 +46,7 @@ module.exports = { .verifyContracts(['test8', 'ERC20', 'SafeMath'], { wait: 10000 }) }, - 'Test Github Import - no branch specified #group2': function (browser: NightwatchBrowser) { + 'Test GitHub Import - no branch specified #group2': function (browser: NightwatchBrowser) { browser .setSolidityCompilerVersion('soljson-v0.8.0+commit.c7dfd78e.js') // open-zeppelin moved to pragma ^0.8.0 (master branch) .clickLaunchIcon('filePanel') @@ -56,7 +56,7 @@ module.exports = { .verifyContracts(['test10', 'ERC20'], { wait: 10000 }) }, - 'Test Github Import - raw URL #group4': function (browser: NightwatchBrowser) { + 'Test GitHub Import - raw URL #group4': function (browser: NightwatchBrowser) { browser .clickLaunchIcon('filePanel') .click('li[data-id="treeViewLitreeViewItemREADME.txt"') @@ -65,7 +65,7 @@ module.exports = { .verifyContracts(['test11', 'ERC20'], { wait: 10000 }) }, - 'Test switch to a github import from a solidity warning #group3': function (browser: NightwatchBrowser) { + 'Test switch to a GitHub import from a solidity warning #group3': function (browser: NightwatchBrowser) { browser .setSolidityCompilerVersion('soljson-v0.7.4+commit.3f05b770.js') .clickLaunchIcon('filePanel') diff --git a/apps/remix-ide/docs/file_explorer.md b/apps/remix-ide/docs/file_explorer.md index 545d357d22..008b044307 100644 --- a/apps/remix-ide/docs/file_explorer.md +++ b/apps/remix-ide/docs/file_explorer.md @@ -33,9 +33,9 @@ Publish to Gist The icon marked **C.** above. Publishes all files from the browser folder to a gist. Only file in the root of **browser** will be published. Files in subfolders will not be publish to the Gist. Gist API has changed in 2018 and **requires** users to be authenticated to be able to publish a gist. -Click [this link](https://github.com/settings/tokens) to Github tokens setup and select Generate new token. Then check the **Create gists** checkbox and generate a new token. +Click [this link](https://github.com/settings/tokens) to GitHub tokens setup and select Generate new token. Then check the **Create gists** checkbox and generate a new token. -Take the token and paste it in Remix's **Settings** module in the **Github Access Token** section. And then click Save. Now you should be able to use the feature. +Take the token and paste it in Remix's **Settings** module in the **GitHub Access Token** section. And then click Save. Now you should be able to use the feature. Create a folder --------------- diff --git a/apps/remix-ide/docs/locations.md b/apps/remix-ide/docs/locations.md index e193139619..7a74c67185 100644 --- a/apps/remix-ide/docs/locations.md +++ b/apps/remix-ide/docs/locations.md @@ -7,4 +7,4 @@ So if you've found the documentation to Remix but don't know where to find Remix - An alpha online version is available at [https://remix-alpha.ethereum.org](https://remix-alpha.ethereum.org). This is not a stable version. - npm `remix-ide` package `npm install remix-ide -g`. `remix-ide` create a new instance of `Remix IDE` available at [http://127.0.0.1:8080](http://127.0.0.1:8080) and make the current folder available to Remix IDE by automatically starting `remixd`. see [Connection to `remixd`](https://remix-ide.readthedocs.io/en/latest/remixd.html) for more information about sharing local file with `Remix IDE`. -- Github release: [https://github.com/ethereum/remix-ide/releases](https://github.com/ethereum/remix-ide/releases) . The source code is packaged at every release but still need to be built using `npm run build`. +- GitHub release: [https://github.com/ethereum/remix-ide/releases](https://github.com/ethereum/remix-ide/releases) . The source code is packaged at every release but still need to be built using `npm run build`. diff --git a/apps/remix-ide/docs/remix_tutorials_github.md b/apps/remix-ide/docs/remix_tutorials_github.md index 47f708e45a..1bb31de1e1 100644 --- a/apps/remix-ide/docs/remix_tutorials_github.md +++ b/apps/remix-ide/docs/remix_tutorials_github.md @@ -1,4 +1,4 @@ -Remix Github Tutorials +Remix GitHub Tutorials ======================= There are a series of tutorials in our github repo [remix-workshops](https://github.com/ethereum/remix-workshops). diff --git a/apps/remix-ide/team-best-practices.md b/apps/remix-ide/team-best-practices.md index 3832c3be95..5a246096e7 100644 --- a/apps/remix-ide/team-best-practices.md +++ b/apps/remix-ide/team-best-practices.md @@ -54,7 +54,7 @@ Related links: - How the backend (if any) works / will work (could be a smart contract). - How the frontend works / will work. - What is the general vision of the UX design for this particular story. - Later progress and discussion is updated directly on the issue or pull request (Github). + Later progress and discussion is updated directly on the issue or pull request (GitHub). --- @@ -72,7 +72,7 @@ Before starting coding, we should ensure all devs / contributors are aware of: # Story / Bug fix -- Prioritised list of PRs / issues are tracked in a Github Project, Remix IDE issues are managed by a prioritized backlog. +- Prioritised list of PRs / issues are tracked in a GitHub Project, Remix IDE issues are managed by a prioritized backlog. - Every story can be executed by a single developer or a group of 2 or more developers (depending on the size and complexity) - Each dev should take the part he/she feels the most confortable with. - Later progress and discussion is updated directly on the issue or pull request (github). diff --git a/libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx b/libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx index 52c50c6dba..c43267df17 100644 --- a/libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx +++ b/libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx @@ -285,7 +285,7 @@ export const RemixUiHomeTab = (props: RemixUiHomeTabProps) => {

- +
diff --git a/libs/remix-ui/settings/src/lib/constants.ts b/libs/remix-ui/settings/src/lib/constants.ts index 9219ffff63..e541111fe2 100644 --- a/libs/remix-ui/settings/src/lib/constants.ts +++ b/libs/remix-ui/settings/src/lib/constants.ts @@ -3,8 +3,8 @@ export const textSecondary = 'text-secondary' export const textDark = 'text-dark' export const warnText = 'Be sure the endpoint is opened before enabling it. \nThis mode allows a user to provide a passphrase in the Remix interface without having to unlock the account. Although this is very convenient, you should completely trust the backend you are connected to (Geth, Parity, ...). Remix never persists any passphrase'.split('\n').map(s => s.trim()).join(' ') -export const gitAccessTokenTitle = 'Github Access Token' -export const gitAccessTokenText = 'Manage the access token used to publish to Gist and retrieve Github contents.' +export const gitAccessTokenTitle = 'GitHub Access Token' +export const gitAccessTokenText = 'Manage the access token used to publish to Gist and retrieve GitHub contents.' export const gitAccessTokenText2 = 'Go to github token page (link below) to create a new token and save it in Remix. Make sure this token has only \'create gist\' permission.' export const gitAccessTokenLink = 'https://github.com/settings/tokens' export const etherscanTokenTitle = 'EtherScan Access Token' diff --git a/libs/remix-ui/settings/src/lib/remix-ui-settings.tsx b/libs/remix-ui/settings/src/lib/remix-ui-settings.tsx index a661869e14..37b783d7b9 100644 --- a/libs/remix-ui/settings/src/lib/remix-ui-settings.tsx +++ b/libs/remix-ui/settings/src/lib/remix-ui-settings.tsx @@ -188,7 +188,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => {
saveToken(type)} value="Save" type="button" disabled={tokenValue === ''}> - +
diff --git a/libs/remix-url-resolver/README.md b/libs/remix-url-resolver/README.md index 2f01531bf9..3fa45ffd6c 100644 --- a/libs/remix-url-resolver/README.md +++ b/libs/remix-url-resolver/README.md @@ -6,7 +6,7 @@ [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/ethereum/remix-project/issues) -`@remix-project/remix-url-resolver` is a tool to handle import from different sources and resolve the content. It is used in Remix IDE to handle imports from `Github`, `Swarm`, `IPFS` and other URLs. +`@remix-project/remix-url-resolver` is a tool to handle import from different sources and resolve the content. It is used in Remix IDE to handle imports from `GitHub`, `Swarm`, `IPFS` and other URLs. ### Installation diff --git a/team-best-practices.md b/team-best-practices.md index d614f2f702..70174e9a09 100644 --- a/team-best-practices.md +++ b/team-best-practices.md @@ -55,7 +55,7 @@ Related links: - How the backend (if any) works / will work (could be a smart contract). - How the frontend works / will work. - What is the general vision of the UX design for this particular story. - Later progress and discussion is updated directly on the issue or pull request (Github). + Later progress and discussion is updated directly on the issue or pull request (GitHub). --- @@ -73,7 +73,7 @@ Before starting coding, we should ensure all devs / contributors are aware of: # Story / Bug fix -- Prioritised list of PRs / issues are tracked in a Github Project, Remix IDE issues are managed by a prioritized backlog. +- Prioritised list of PRs / issues are tracked in a GitHub Project, Remix IDE issues are managed by a prioritized backlog. - Every story can be executed by a single developer or a group of 2 or more developers (depending on the size and complexity) - Each dev should take the part he/she feels the most confortable with. - Later progress and discussion is updated directly on the issue or pull request (github).