comment misspell

pull/4636/head
snoppy 8 months ago committed by Aniket
parent de1ea37cd6
commit 19122ae346
  1. 6
      apps/circuit-compiler/src/app/actions/index.ts
  2. 2
      apps/remix-ide-e2e/src/tests/specialFunctions.test.ts
  3. 2
      apps/remix-ide/team-best-practices.md

@ -6,7 +6,7 @@ export const compileCircuit = async (plugin: CircomPluginClient, appState: AppSt
if (appState.status !== "compiling") { if (appState.status !== "compiling") {
await plugin.compile(appState.filePath, { version: appState.version, prime: appState.primeValue }) await plugin.compile(appState.filePath, { version: appState.version, prime: appState.primeValue })
} else { } else {
console.log('Exisiting circuit compilation in progress') console.log('Existing circuit compilation in progress')
} }
} catch (e) { } catch (e) {
plugin.internalEvents.emit('circuit_compiling_errored', e) plugin.internalEvents.emit('circuit_compiling_errored', e)
@ -19,7 +19,7 @@ export const generateR1cs = async (plugin: CircomPluginClient, appState: AppStat
if (appState.status !== "generating") { if (appState.status !== "generating") {
await plugin.generateR1cs(appState.filePath, { version: appState.version, prime: appState.primeValue }) await plugin.generateR1cs(appState.filePath, { version: appState.version, prime: appState.primeValue })
} else { } else {
console.log('Exisiting r1cs generation in progress') console.log('Existing r1cs generation in progress')
} }
} catch (e) { } catch (e) {
plugin.internalEvents.emit('circuit_generating_r1cs_errored', 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) await plugin.computeWitness(input)
} else { } else {
console.log('Exisiting witness computation in progress') console.log('Existing witness computation in progress')
} }
} catch (e) { } catch (e) {
plugin.internalEvents.emit('circuit_computing_witness_errored', e) plugin.internalEvents.emit('circuit_computing_witness_errored', e)

@ -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 // don't need to redeploy it, same contract
browser.perform((done) => { browser.perform((done) => {
browser.getAddressAtPosition(0, (address) => { browser.getAddressAtPosition(0, (address) => {

@ -168,7 +168,7 @@ Before starting coding, we should ensure all devs / contributors are aware of:
### 3) Documentation: ### 3) Documentation:
- The documentation is done / updated just after the feature / release in a team effort. - 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, ...) - It is encouraged to find and link associated doc produced by the community (blog posts, videos, tutorials, ...)
--- ---

Loading…
Cancel
Save