Skip to content

Commit 46e92aa

Browse files
authored
Fix a typo in test description
1 parent 135740b commit 46e92aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

greenlet.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ describe('greenlet', () => {
77
expect(g()).toEqual(jasmine.any(Promise));
88
});
99

10-
it('should invoke sync funtions', async () => {
10+
it('should invoke sync functions', async () => {
1111
let foo = greenlet( a => 'foo: '+a );
1212

1313
let ret = await foo('test');
1414
expect(ret).toEqual('foo: test');
1515
});
1616

17-
it('should invoke async funtions', async () => {
17+
it('should invoke async functions', async () => {
1818
let bar = greenlet( a => new Promise( resolve => {
1919
resolve('bar: '+a);
2020
}));

0 commit comments

Comments
 (0)