Skip to content

Commit

Permalink
docs: fixed some typos in doc to address comments
Browse files Browse the repository at this point in the history
re #660
  • Loading branch information
hui-an-yang committed Oct 28, 2022
1 parent 1a12a83 commit ef0ca04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration-tests/contract-michelson-origination.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ CONFIGS().forEach(({ lib, rpc, setup }) => {
done();
});

it('no parser configures will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => {
// No parserProvider configured will use MichelCodecParser by dafault (the Michelson will be parsed to JSONMichelson)
it('no parser configured will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => {
// No parserProvider configured will use MichelCodecParser by default (the Michelson will be parsed to JSONMichelson)
const op = await Tezos.contract.originate({
balance: "0",
code: idMichelsonCode,
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/wallet-michelson-origination.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ CONFIGS().forEach(({ lib, rpc, setup }) => {
done();
});

it('no parser configures will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => {
// No parserProvider configured will use MichelCodecParser by dafault (the Michelson will be parsed to JSONMichelson)
it('no parser configured will use MichelCodecParser by default to originate Michelson code and succeeds', async (done) => {
// No parserProvider configured will use MichelCodecParser by default (the Michelson will be parsed to JSONMichelson)
const op = await Tezos.wallet.originate({
balance: "0",
code: idMichelsonCode,
Expand Down

0 comments on commit ef0ca04

Please sign in to comment.