Skip to content

Commit 1a586b4

Browse files
Update StandardLibrary/runtimes/go/ImplementationFromDafny-go/ConcurrentCall/externs.go
Co-authored-by: Kess Plasmeier <76071473+kessplas@users.noreply.github.com>
1 parent 732f340 commit 1a586b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • StandardLibrary/runtimes/go/ImplementationFromDafny-go/ConcurrentCall

StandardLibrary/runtimes/go/ImplementationFromDafny-go/ConcurrentCall/externs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ func ConcurrentCall(callee Callee, serialIters uint32, concurrentIters uint32) {
1010
go func() {
1111
defer wg.Done()
1212
for j := uint32(0); j < serialIters; j++ {
13-
calle.Call(j, concurrentPos)
13+
callee.Call(j, concurrentPos)
1414
}
1515
}()
1616
wg.Wait()

0 commit comments

Comments
 (0)