File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ func startCall() uint64 {
32
32
return latestCallID
33
33
}
34
34
35
- // removeFrame removes the frame with for the given call ID.
35
+ // removeFrame removes the frame for the given call ID.
36
36
// The result can be nil when the frame is not initialized,
37
37
// i.e. when startCall() is called but no iterator is stored.
38
38
func removeFrame (callID uint64 ) frame {
@@ -44,7 +44,7 @@ func removeFrame(callID uint64) frame {
44
44
return remove
45
45
}
46
46
47
- // endCall is called at the end of a contract call to remove one item the iteratorFrames
47
+ // endCall is called at the end of a contract call to remove one item from the iteratorFrames
48
48
func endCall (callID uint64 ) {
49
49
// we pull removeFrame in another function so we don't hold the mutex while cleaning up the removed frame
50
50
remove := removeFrame (callID )
You can’t perform that action at this time.
0 commit comments