Fix many spelling errors (#3274)

This commit is contained in:
Pandapip1
2022-03-22 17:16:20 -04:00
committed by GitHub
parent 0eba5112c8
commit faf5820f03
21 changed files with 73 additions and 73 deletions

View File

@ -69,7 +69,7 @@ contract('DoubleEndedQueue', function (accounts) {
describe('push', function () {
it('front', async function () {
await this.deque.pushFront(bytesD);
this.content.unshift(bytesD); // add element at the begining
this.content.unshift(bytesD); // add element at the beginning
expect(await getContent(this.deque)).to.have.ordered.members(this.content);
});