diff --git a/apps/circuit-compiler/src/app/actions/index.ts b/apps/circuit-compiler/src/app/actions/index.ts index 55944f7bc6..7c8e6077c3 100644 --- a/apps/circuit-compiler/src/app/actions/index.ts +++ b/apps/circuit-compiler/src/app/actions/index.ts @@ -6,7 +6,7 @@ export const compileCircuit = async (plugin: CircomPluginClient, appState: AppSt if (appState.status !== "compiling") { await plugin.compile(appState.filePath, { version: appState.version, prime: appState.primeValue }) } else { - console.log('Exisiting circuit compilation in progress') + console.log('Existing circuit compilation in progress') } } catch (e) { plugin.internalEvents.emit('circuit_compiling_errored', e) @@ -19,7 +19,7 @@ export const generateR1cs = async (plugin: CircomPluginClient, appState: AppStat if (appState.status !== "generating") { await plugin.generateR1cs(appState.filePath, { version: appState.version, prime: appState.primeValue }) } else { - console.log('Exisiting r1cs generation in progress') + console.log('Existing r1cs generation in progress') } } catch (e) { plugin.internalEvents.emit('circuit_generating_r1cs_errored', e) @@ -34,7 +34,7 @@ export const computeWitness = async (plugin: CircomPluginClient, status: string, await plugin.computeWitness(input) } else { - console.log('Exisiting witness computation in progress') + console.log('Existing witness computation in progress') } } catch (e) { plugin.internalEvents.emit('circuit_computing_witness_errored', e) diff --git a/apps/remix-ide-e2e/src/tests/specialFunctions.test.ts b/apps/remix-ide-e2e/src/tests/specialFunctions.test.ts index 65ffb46186..0a5942bd07 100644 --- a/apps/remix-ide-e2e/src/tests/specialFunctions.test.ts +++ b/apps/remix-ide-e2e/src/tests/specialFunctions.test.ts @@ -129,7 +129,7 @@ module.exports = { }) }) }, - 'Use special functions receive/fallback - only fallback is diclared and is payable, sending data and wei #group3': function (browser: NightwatchBrowser) { + 'Use special functions receive/fallback - only fallback is declared and is payable, sending data and wei #group3': function (browser: NightwatchBrowser) { // don't need to redeploy it, same contract browser.perform((done) => { browser.getAddressAtPosition(0, (address) => { diff --git a/apps/remix-ide-e2e/yarn.lock b/apps/remix-ide-e2e/yarn.lock index 2d49bb5a66..fe1b407d64 100644 --- a/apps/remix-ide-e2e/yarn.lock +++ b/apps/remix-ide-e2e/yarn.lock @@ -1437,9 +1437,9 @@ flat@^5.0.2: integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== follow-redirects@^1.0.0, follow-redirects@^1.15.0: - version "1.15.4" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf" - integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw== + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== for-each@^0.3.3: version "0.3.3" diff --git a/apps/remix-ide/team-best-practices.md b/apps/remix-ide/team-best-practices.md index 3753cf1778..4918dc0e09 100644 --- a/apps/remix-ide/team-best-practices.md +++ b/apps/remix-ide/team-best-practices.md @@ -168,7 +168,7 @@ Before starting coding, we should ensure all devs / contributors are aware of: ### 3) Documentation: - The documentation is done / updated just after the feature / release in a team effort. -- Documentation work is filable as a github issue. +- Documentation work is fileable as a github issue. - It is encouraged to find and link associated doc produced by the community (blog posts, videos, tutorials, ...) ---