Skip to content

Commit bffbce7

Browse files
chore(promise): regenerate async output
1 parent fd88e7b commit bffbce7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/generators/promise/gen/async/big_int_promise.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// This is auto generated code
1+
// Package async contains promise implementations generated for specific types.
2+
// This is auto generated code.
23
package async
34

45
import (
@@ -7,11 +8,10 @@ import (
78
"sync"
89
)
910

10-
// Promise represents an eventual completion of an ansynchronous operation
11-
// and its resulting value. Promise can be either fulfilled or failed and
12-
// it can happen only one time. All Promise operations are thread-safe.
13-
//
14-
// To create a promise use: `&BigIntPromise{}`
11+
// BigIntPromise represents an eventual completion of an ansynchronous
12+
// operation and its resulting value. Promise can be either fulfilled or
13+
// failed and it can happen only one time. All Promise operations are
14+
// thread-safe. To create a promise use: `&BigIntPromise{}`
1515
type BigIntPromise struct {
1616
mutex sync.Mutex
1717
successFn func(*big.Int)

0 commit comments

Comments
 (0)